登陆请求出错,怎么办 charles又找不破解版???
来源:5-3 登录页面的开发2
慕网老油条丶
2018-09-10
写回答
3回答
-
可以用webpack@3.x 在webpack.config.js里配置devServer
devServer: { port: 8088, historyApiFallback: { index: '/dist/views/index.html' }, proxy: { '/user': { target: 'http://test.happymmall.com', changeOrigin: true } } }
052018-09-10 -
mid_one
2018-09-11
devServer下面的proxy可以换成这种
proxy: {
'/': {
target: 'http://test.happymmall.com',
changeOrigin: true
}
}
意思是所有来自localhost:8080下面的请求都拦截到test.happymmall.com上
后面所有的借口都不用配置了 一劳永逸。
10 -
mid_one
2018-09-10
测试接口现在换成了test.happymmall.com
012018-09-10
相似问题