Saya mengambil URL seperti ini:
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 saya mengharapkan datanya multipart/form-data
jadi saya menggunakan content-type
jenis ini ... Tapi itu memberi saya respons dengan kode status 400.
Apa yang salah dengan kode saya?