1.post方法发送请求(在headers添加sourceType属性)
axios.post("http://xxx/xxx",
{
'id': id
},
{
headers: {sourceType: 1}
}
).then((res)=>{
console.log(res)
})
2.get方法
axios.get("/jk",{
headers: {
sourceType: 1
},
params: {
}
}).then((res)=>{});