开发环境下,采用 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)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…