Tôi đang tìm nạp một URL như thế này:
fetch(url, {
mode: 'no-cors',
method: method || null,
headers: {
'Accept': 'application/json, application/xml, text/plain, text/html, *.*',
'Content-Type': 'multipart/form-data'
},
body: JSON.stringify(data) || null,
}).then(function(response) {
console.log(response.status)
console.log("response");
console.log(response)
})
API của tôi mong muốn dữ liệu là của multipart/form-data
nên tôi đang sử dụng content-type
loại này ... Nhưng nó đang cho tôi phản hồi với mã trạng thái 400.
Có gì sai với mã của tôi?