vue中$axios跨域处理

我遇到的跨域问题
contexttype错误
参数错误
url地址有问题
于是
this.$axios.post("http://xxx.xxx.x.xx:xxxx/xx/xxx" ,'{"cphm":"'+a+b+'","cjh":"'+c+'"}' ,{headers: {'Content-Type': 'application/json'}}) .then
其中a,b,c是我自己的参数
可根据需求来改

{headers: {‘Content-Type’: ‘application/json’}}
这串代码 才是重中之重
意思是设置contexttype为application/json
而我穿的参数为什么又那么繁杂
因为后端接口接收的是json字符串,所以在这里我手动的拼接成了json字符串

关于转json的方式有朋友有更好方法的请分享依稀

你可能感兴趣的:(vue中$axios跨域处理)