过帐表格数据
fetch(`/example/submit`, {
method: 'POST',
body: new FormData(document.getElementById('example-form'))
});发布JSON数据
fetch(`/example/submit.json`, {
method: 'POST',
body: JSON.stringify({
email: document.getElementById('example-email').value,
comment: document.getElementById('example-comment').value
})
});