我有一个角度 1.6 项目。我的应用程序库网址 https://localhost/abc/#/
我想编写一个http服务调用来获取客户端详细信息:https://localhost/api/ccc/v1/client
但是当我将网址传递给http.get((时,它遇到了 https://localhost/abc/api/ccc/v1/client
function getClient() {
var url = "api/ccc/v1/client";
return $http.get(url).then((response) => {
return response;
});
}
如何从我的 url 中删除"abc"以点击这个 (https://localhost/api/ccc/v1/client( 确切的 api? 有人可以帮助我吗?
我通过在 url 中添加(/(找到了解决此问题的方法。
"var url = "/api/ccc/v1/client";"
现在,我能够点击这个(https://localhost/api/ccc/v1/client(确切的api来获取客户详细信息。
更新的代码
function getClient() {
var url = "/api/ccc/v1/client";
return $http.get(url).then((response) => {
return response;
});
}