request mode no-cors ecample code example
Example 1: Add no cores to fetch
const data = { funny: "Absolutely not", educational: "yas" }
fetch('https://example.com/api/', {
method: 'POST',
mode: 'no-cors',
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
}).then(returnedData => {
}).catch(err => {
})
Example 2: redirect to website from promise value fetch
fetch("http://example.com/", {
method: 'POST',
mode: 'cors',
body: formData
})
.then(dataWrappedByPromise => dataWrappedByPromise.text())
.then(data => {
window.location.replace(data);
})