admin管理员组文章数量:1350335
I am trying to configure headers in a project with vue.js
and axios
to call a service that expects a json. My problem is that when I make my call with the POST
method, axios
puts to the request Content-Type
header with x-www-urlencoded
, but in my code, I put manually Content-Type
header with application / json
.
var loginObj = {
var1: payload.login,
var2: payload.password
}
const jsonLogin = JSON.stringify(loginObj)
const config = {
headers: {
'content-type': 'application/json',
'Accept': 'application/json'
}
}
axios({
url: 'url/example',
method: 'post',
data: jsonLogin,
config
})
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
})
I am trying to configure headers in a project with vue.js
and axios
to call a service that expects a json. My problem is that when I make my call with the POST
method, axios
puts to the request Content-Type
header with x-www-urlencoded
, but in my code, I put manually Content-Type
header with application / json
.
var loginObj = {
var1: payload.login,
var2: payload.password
}
const jsonLogin = JSON.stringify(loginObj)
const config = {
headers: {
'content-type': 'application/json',
'Accept': 'application/json'
}
}
axios({
url: 'url/example',
method: 'post',
data: jsonLogin,
config
})
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
})
Share
Improve this question
edited Jan 20, 2020 at 3:30
noam aghai
1,4464 gold badges19 silver badges30 bronze badges
asked Aug 2, 2019 at 22:32
Ruben OrtegaRuben Ortega
611 gold badge1 silver badge4 bronze badges
1 Answer
Reset to default 5The Axios property to set header config should be headers:
and you are setting with config:
try with:
axios({
url: 'url/example',
method: 'post',
data: jsonLogin,
headers: config.headers
})
or change your const config to:
const configHeaders = {
"content-type": "application/json",
"Accept": "application/json"
};
and use it with:
axios({
url: "url/example",
method: "post",
data: jsonLogin,
headers: configHeaders
});
本文标签: javascriptHeader Content Type in axios can39t set applicationjsonStack Overflow
版权声明:本文标题:javascript - Header Content Type in axios can't set applicationjson - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743875708a2554285.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论