我的到来
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);
我只想获取pageGuid,而不必从响应中切出URL。我应该做其他事情,比如使用UrlSegment来获取我需要的正确URL吗?