1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/auth/simple-auth-server/static/main.js

20 lines
746 B
JavaScript
Raw Normal View History

function post(url = ``, data = {}) {
// Default options are marked with *
return fetch(url, {
2024-08-07 03:04:57 +02:00
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
headers: {
2024-08-07 03:04:57 +02:00
"Content-Type": "application/json; charset=utf-8",
},
2024-08-07 03:04:57 +02:00
redirect: "follow", // manual, *follow, error
referrer: "no-referrer", // no-referrer, *client
body: JSON.stringify(data), // body data type must match "Content-Type" header
2024-08-07 03:04:57 +02:00
}).then(response => response.json()) // parses response to JSON
}
// window.addEventListener('load', function() {
// console.log('All assets are loaded');
// console.log(getUrlVars());
// });