码迷,mamicode.com
首页 > 其他好文 > 详细

angular 解决跨域问题

时间:2021-01-13 10:41:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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 开始,会自动补全

 

angular 解决跨域问题

标签:span   补全   builder   target   hang   json   angular   命令   div   

原文地址:https://www.cnblogs.com/wskxy/p/14260591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!