Angular4 反向代理Details
1. 设置proxy.config.json文件
{ "/api": { //这里是前台调用后端接口时做的代理标识 "target": "localhost:3100", "logLevel": "debug", "secure": false, "changeOrigin": true, "pathRewrite": { "^/api": "" } } }
注意:pathRewrite
部分的配置,"pathRewrite": {"^/api": ""}
如果没有这部分的配置,那在发送请求的时候,实际请求的地址将会是http://localhost:3100/api/actionapi/
。相较于真实url
,会多出/api
这一部分。
2. 设置service的url
//这里的api表示代理标识 //实际的访问url应该是:http://localhost:3100/actionapi/ const wcfPath = '/api/actionapi/';
3. 设置package.json文件
"scripts": { "ng": "ng", "build": "ng build --prod --aot --build-optimizer", "start:dev": "ng serve --proxy-config proxy.conf.json --open", "start:aot": "ng serve --prod --aot --proxy-config proxy.conf.json --open", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e" }
再重新npm run start:dev启动一下项目,应该就能启用angular反向代理了。
**顺便再补充一下webpack
和angular
的proxy
地址:https://webpack.js.org/configuration/dev-server/#devserver-proxy
https://github.com/angular/angular-cli/wiki/stories-proxy
**
相关推荐
ssihc0 2020-11-11
scaleqiao 2020-10-22
tinydu 2020-08-03
ysmh00 2020-07-04
SZStudy 2020-07-04
TiDBPingCAP 2020-06-28
sicceer 2020-06-21
ssihc0 2020-06-14
WasteLand 2020-06-13
咏月东南 2020-06-10
某些公司会墙特定网站,如果你有一个可访问的域名和服务器,就可以通过nginx反向代理来来解决这些问题。比如现在我们用mirror.example.com镜像www.baidu.com,以下是详细操作。
byourb 2020-06-05
阳光岛主 2020-06-01
hyxinyu 2020-04-27
yungame 2020-04-25
咻咻ing 2020-04-19
OwenJi 2020-04-18