如何使用 Fetch POST 一个 x-www-form-urlencoded 请求?
2022-08-30 00:40:21
我有一些参数,我想将表单编码发布到我的服务器:
{
'userName': 'test@gmail.com',
'password': 'Password!',
'grant_type': 'password'
}
我正在发送我的请求(当前没有参数),如下所示
var obj = {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
},
};
fetch('https://example.com/login', obj)
.then(function(res) {
// Do stuff with result
});
如何在请求中包含表单编码的参数?