这是我的代码:
fetch('http://localhost:3000', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({
'size': 'size_id',
'style': 'style_id',
'qty': '1'
})
})
.then(res => {
console.log(res)
});
我的问题是我只得到了“待处理的承诺”。我对 js 完全陌生,对 js 也很陌生,所以请不要怪我。