[HPM] Error occurred while trying to proxy request

发布于 2022-09-06 15:04:52 字数 763 浏览 6 评论 0

最近在用vue+express+mongodb搭建项目,服务器这边是搭好了,但在前端请求的时候报服务器端错误504
我直接访问127.0.0.1:3000都能获取数据;

服务器报错:[HPM] Error occurred while trying to proxy request /goods from 127.0.0.1:8080 to http://127.0.0.1:3000/goods
这是index.js代理配置:

proxyTable: {
      '/goods': {
        target:'http://127.0.0.1:3000/goods',
        changeOrigin:true,
        pathRewrite:{
          '^goods':''
        }
      }
    }

这是前端请求:

http:function () {
      this.$axios.get('/goods').then((req,res)=>{
        let data = res.data;
        if(data.status === "0"){
          this.usurInfo = data.result;
        }else {
          this.usurInfo = [];
        }
      })
    }

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

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

发布评论

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

评论(2

抽个烟儿 2022-09-13 15:04:52

target:'http://127.0.0.1:3000/goods'
改为
target:'http://127.0.0.1:3000'

腹黑女流氓 2022-09-13 15:04:52

楼主解决了吗,我也遇到这个问题了

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