📅  最后修改于: 2022-03-11 14:55:53.095000             🧑  作者: Mango
fetch('url here', {
method: 'POST',
headers: {'Content-Type':'application/x-www-form-urlencoded'}, // this line is important, if this content-type is not set it wont work
body: 'foo=bar&blah=1'
});