मैं इस तरह एक 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)
})
मेरा एपीआई डेटा की अपेक्षा करता है कि multipart/form-data
मैं content-type
इस प्रकार का उपयोग कर रहा हूं ... लेकिन यह मुझे स्थिति कोड 400 के साथ प्रतिक्रिया दे रहा है।
मेरे कोड में क्या गलत है?