标签:span 补全 builder target hang json angular 命令 div
1.添加配置文件 proxy.conf.json
{ "/api": { "target": "http://localhost:1111", "secure": false, "changeOrigin": true, "logLevel": "debug" } }
在 angular.json 添加 proxyConfig 配置,位置如下
"serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { "browserTarget": "MyFirstDemo:build", "proxyConfig": "proxy.conf.json" },
重新启动程序
启动项目命令:ng serve --proxy-config proxy.conf.json
尝试过:ng serve --open 也是可以的
可以在改写 package.json,使用 npm start 启动项目
"start": "ng serve --proxy-config proxy.conf.json",
会将 http://localhost:4200/api 的地址进行转换,如
http://localhost:4200/api/jwt/ceshi2 会转换为 http://localhost:1111/api/jwt/ceshi2
在输入url时,可省略 http://localhost:4200 只需要从 /api 开始,会自动补全
标签:span 补全 builder target hang json angular 命令 div
原文地址:https://www.cnblogs.com/wskxy/p/14260591.html