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...

求教!!


Cats萌萌
浏览 1627回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js