我想使用标题content-type:'application / xww-form-urlencode'将数据发布到服务器,但是由于内容类型更改为application / json而失败
var headers= {
'content-type': 'application/x-www-form-urlencoded',
'x-access-key': 'key'
}
var data = {
'twins' : twins
}
axios.post('url', data, { headers: headers })
.then((response) => {
console.log(response)
})
.catch((error) => {
console.log(error)
})
答案 0 :(得分:0)
在标题中,将content-type
更改为
'Content-Type': 'application/x-www-form-urlencoded'
如果这不起作用,那么我觉得您可能正在使用拦截器。哪个可能会覆盖您的配置。