数据未通过axios post请求

时间:2017-08-31 21:31:47

标签: javascript vue.js axios

我正在使用axios来调用帖子请求,如下所示:

axios.post(this.api+'&action='+this.action+'&wftkn='+this.wftkn, {name: 'Abcd'}).
   then((res)=>{

   });

当我检查网络选项卡时,我看不到Request头中传递的数据。在这种情况下会出现什么问题?

enter image description here 编辑:添加了控制台错误。

2 个答案:

答案 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