Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

vue proxyTable 问题

开发环境下,采用 https://github.com/vuejs-templates/webpack 配置,后台服务出口 http://localhost:9000/rest,配置 proxyTable:

proxyTable: {
      //'/api/**': 'http://localhost:9000/rest/api'

      '/api/':{
        target: 'http://localhost:9000/rest',
        changeOrigin: true,
        pathRewrite: {
          '^/api/': '/api/'
        }
      }

    },

vue访问 /api/info,运行时前端报 Failed to load resource: the server responded with a status of 504 (Gateway Timeout)

后台报错:[HPM] Error occurred while trying to proxy request /api/info from localhost:3000 to http://localhost:9000/rest (ECONNRESET) (https://nodejs.org/api/errors.html#errors_common_system_errors)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

解决,不能采用 http://localhost:9000/xxx,换成 http://ip:9000/xxx


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...