使用方法GET的Angular HttpClient参数不起作用

前端之家收集整理的这篇文章主要介绍了使用方法GET的Angular HttpClient参数不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用get方法向你询问params.
我有这样的事:
path = 'https://example.com/api';
    const params = new HttpParams();
    params.append('http','angular');
    return this.http.get(path,{params: params});

我以为我会像以下网址:

www.example.com/api?http=angular

但实际上当我在chrome中的网络选项卡中检查时,请求url是

www.example.com/api

当我想要路径时,我该怎么办:www.example.com/api?http=angular
是否可以检查没有铬的使用方法的请求URL?我的意思是在使用该方法的服务中?

提前致谢

您需要在追加函数调用后重新分配.它返回一个新的 HttpParams对象.
const params = new HttpParams().append('http','angular');

这是the documentation of append.您可以看到它返回HttpParams实例

append(param: string,value: string): HttpParams

Construct a new body with an appended value for the given parameter name.

And is it possible to check request url of used method without chrome ?

您可以创建一个HttpInterceptor并查看将在拦截函数实现中使用的整个URL.

原文链接:https://www.f2er.com/angularjs/142498.html

猜你在找的Angularjs相关文章