我正在获取这样的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的响应。
我的代码有什么问题?