想问一下为什么我使用fetch提交表单数据,express无法设置cookie,而直接使用form标签时却可以设置。
为了方便,我把模拟的代码全贴上来
<body>
<form method="POST" action="/bb">
<label>login</label>
<input type="submit" value="login" />
</form>
<div id='test'>fetch</div>
<script>
var test = document.getElementById('test');
test.onclick = function () {
fetch('/bb', {
method: 'POST'
}).then( (data) => {
data.text().then(function(data) {console.log(data)});
})
}
</script>
</body>
慕后森
相关分类