作者:手机用户2602887045_745 | 来源:互联网 | 2023-01-22 10:54
所以,我正试图从'旧'http迁移到新的httpClient
使用http客户端我在我的服务中使用这种格式:
return this.http.get(environment.api+ '.feed.json', requestOptions)
我如何在httpClient中使用它?
尝试了许多thiungs ...包括
return this.http.get(environment.api+ '.feed.json', {params: requestOptions.params})
但得到一个类型错配:(
1> Andrei Matra..:
试试这个:
const requestOptiOns= {
params: new HttpParams()
};
requestOptions.params.set('foo', 'bar');
this.http.get(environment.api+ '.feed.json', requestOptions );
这里也是文档的链接,描述了如何使用标题和URL参数的示例:HttpClient
我怎么能用你的例子来设置`withCredentials:true`?