axios设置content-type
时间: 2023-04-26 09:05:29 浏览: 116
VUE项目axios请求头更改Content-Type操作
5星 · 资源好评率100%
可以在发送请求时在config对象中设置headers.content-type属性来指定Content-Type。
示例:
axios.post('/url', data, {
headers: {
'Content-Type': 'application/json'
}
});
或者可以在创建axios实例时设置默认headers:
var instance = axios.create({
headers: {'Content-Type': 'application/json'}
});
instance.post('/url', data);
阅读全文