代码之家  ›  专栏  ›  技术社区  ›  unos baghaii

angular 2测试URL与web API URL不同

  •  0
  • unos baghaii  · 技术社区  · 7 年前

    当我想用 ng test ,将在 http://localhost:9876

    Web API URL为 http://localhost:42339/ . 测试失败,因为请求转到 http://localhost:9876 . 我更改了服务URL

      getTagData(): Observable<any> {
    
         return this.adminBaseService.get(`http://localhost:42339/api/admin/Tags/GetTags`);
     }
    

    但它会打电话给 http://localhost:9876

    有什么帮助吗?

    0 回复  |  直到 7 年前