You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
864 B
20 lines
864 B
async function postData(url = '', data = {}) {
|
|
// Default options are marked with *
|
|
console.log(data);
|
|
const response = await fetch(url, {
|
|
method: 'POST', // *GET, POST, PUT, DELETE, etc.
|
|
mode: 'cors', // no-cors, *cors, same-origin
|
|
cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
|
|
credentials: 'same-origin', // include, *same-origin, omit
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
// 'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
redirect: 'follow', // manual, *follow, error
|
|
referrerPolicy: 'no-referrer', // no-referrer, *client
|
|
body: JSON.stringify(data) // body data type must match "Content-Type" header
|
|
});
|
|
return await response.json(); // parses JSON response into native JavaScript objects
|
|
}
|
|
|
|
export default postData; |