Angular4 反向代理Details实践
本文介绍了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**
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
MODULE_INITIALIZER初始化Angular 懒加载模块高级技巧
这篇文章主要为大家介绍了MODULE_INITIALIZER初始化Angular懒加载模块高级技巧示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-10-10AngularJS与BootStrap模仿百度分页的示例代码
分页在很多时候都能用到,这篇文章主要介绍了AngularJS与BootStrap模仿百度分页的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-05-05
最新评论