答案 0 :(得分:0)
尝试一下
参数
var params = 'user_id=' + res.user_id
params += '&first_name=' + firstName
请求
内容类型-根据您的要求设置
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': token,
},
body: params
})
.then((res) => res.json())
.then((json) => {
console.log("RESPONSE:- ", json)
})
.catch((err) => {
console.log("ERROR WEB:- ", err)
})