Angular http.get不发送Params

时间:2018-05-03 16:01:42

标签: angular parameters

我的到来

 getTaggedProofImage(proofGuid: string, pageGuid: string): 
    Observable<HttpResponse<any>> {
    const params = new HttpParams().set('pageGuid', pageGuid);
    const url = this.getProofTaggedImageUrl(proofGuid, pageGuid);
    return this.http.get(url, { params, observe: 'response'});

}

由于某些原因,我的回复不包括参数。目前,我不得不将页面GUID从URL中分割出来。

 .subscribe((response) => {
    const pageGuid = response.url.slice(-51, -15);

我还尝试将数据附加到标题而没有任何运气。enter image description here

我只想获取pageGuid,而不必从响应中切出URL。我应该做其他事情,比如使用UrlSegment来获取我需要的正确URL吗?

0 个答案:

没有答案