我正在使用axios
来调用帖子请求,如下所示:
axios.post(this.api+'&action='+this.action+'&wftkn='+this.wftkn, {name: 'Abcd'}).
then((res)=>{
});
当我检查网络选项卡时,我看不到Request头中传递的数据。在这种情况下会出现什么问题?
答案 0 :(得分:1)
请试试这个:
axios.post(this.api, { name: 'Abcd' }, {
params: {
action: this.action,
wftkn: this.wftkn,
}
}).then((res)=>{});
答案 1 :(得分:0)
这是对浏览器的保护,您在不同的域上请求资源,因此您需要设置响应标头:
Access-Control-Allow-Origin: http://localhost:8000
https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS