Ich rufe eine URL wie folgt ab:
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)
})
Meine API erwartet, dass die Daten von diesem Typ sind, multipart/form-data
also verwende ich content-type
diesen Typ ... Aber es gibt mir eine Antwort mit dem Statuscode 400.
Was ist los mit meinem Code?