Pobieram adres URL taki jak ten:
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)
})
Moje API oczekuje, że dane będą multipart/form-data
takie, więc używam content-type
tego typu ... Ale daje mi odpowiedź z kodem statusu 400.
Co jest nie tak z moim kodem?