Angular4 反向代理Details实践

1. 设置proxy.config.json文件

{ "/api": { //这里是前台调用后端接口时做的代理标识 "target": "localhost:3100", "logLevel": "debug", "secure": false, "changeOrigin": true, "pathRewrite": { "^/api": "" } } }

注意:pathRewrite 部分的配置,"pathRewrite": {"^/api": ""} 如果没有这部分的配置,那在发送请求的时候,实际请求的地址将会是:3100/api/actionapi/。相较于真实url,会多出/api这一部分。

2. 设置service的url

//这里的api表示代理标识 //实际的访问url应该是::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://github.com/angular/angular-cli/wiki/stories-proxy**

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8260473e1c4237e1f4308914f1968b0e.html