私は次のような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の応答が返されます。
私のコードの何が問題になっていますか?