다음과 같은 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으로 응답을 제공합니다.
내 코드에 어떤 문제가 있습니까?