ฉันกำลังดึง URL เช่นนี้:
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 ของฉันคาดว่าข้อมูลจะเป็นmultipart/form-data
ดังนั้นฉันจึงใช้content-type
ประเภทนี้ ... แต่มันให้การตอบสนองด้วยรหัสสถานะ 400
รหัสของฉันผิดอะไร