当我想用
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
有什么帮助吗?