vue cli 配置 proxytable 失效

  1. 我要请求的 地址是 http://192.168.2.125:8080/WX/user/WXRegister
  2. 我配置的 Proxytable 如下
    proxyTable:{

     '/api': {
    
       target:'http://192.168.2.125:8080', 
    
       changeOrigin:true,
    
       pathRewrite: {
         '^/api': ''
       }
     }

    },

  3. 我请求的 axios 如下
    this.axios({

     method:'post',
     url:'/api/WX/user/WXRegister',
    data:{
       ...obj,
       sign:getSign(obj)
       

    }
    }).then(res=>{

     console.log(res,'有数据吗')

    })

  4. 然后 网页报如下错误
    POST http://localhost:8080/api/WX/user/WXRegister 504 (Gateway Timeout)

5.控制台报 如下错误
[HPM] Error occurred while trying to proxy request /WX/user/WXRegister from localhost:8080 to http://192.168.2.125:8080 (ECONNREFUSED) (https://nodejs.org/api/errors...

求教!!

阅读 2.5k
2 个回答

检查一下防火墙,把本机的防火墙关闭掉。

跨域配置是正确的,后端背锅!

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏