最佳答案
我正在获取这样一个 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的响应。
我的代码怎么了?