POST
await (await fetch('/example/api', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-CSRF-Token': document.querySelector("meta[name='csrf-token']").getAttribute('content')
},
body: JSON.stringify({
params1: 'パラメータ1',
params2: 'パラメータ2',
})
})).json()
GET
await (await fetch('/example/api')).json()