关于vue-resource跨域

发布于 2022-09-05 06:01:35 字数 856 浏览 15 评论 0

使用sylius的API接口,用本地服务器,但是vue的resource 的get 一直访问不到

Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access. The response had HTTP status code 404.
这段是关于报错!

this.$http.get('http://localhost:8000/api/ban...', {

    headers: {'Content-Type': 'application/json'}
  }).then((response) => {
    this.banner = response.data
    console.log(this.banner)
  })

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

罪歌 2022-09-12 06:01:35

No 'Access-Control-Allow-Origin' ,看这个像是跨域问题呀,用jsonp方法

   new Vue({ ready() { 
   this.$http.jsonp('/url', {name:"abc"})          .then(function (res){ 
    console.log(res) 
}, function (res) { 
    console.log(res) 
 }); 
} 

})

白鸥掠海 2022-09-12 06:01:35

proxyTable可以解决问题。亲测以下问题可以完美解决:后台接口与本地的不在同一个地址下(跨域),用了proxyTable后就可以了,无需其他配置。如果是脚手架项目,在config/index.js里配置

绮筵 2022-09-12 06:01:35

这个我之前整理过,手机码字不方便,直接上链接关于vue和axios的跨域

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文