我对此代码有疑问:
我正在使用此功能从ws获取数据。与ws通讯在https中。
public detailsuser(): Observable<Users> {
return this.http.get(Api.getUrl(Api.URLS.details),
{
headers: new HttpHeaders({'X-Token': this.currentUser.token}),
observe: 'response'
})
.pipe(map((response: HttpResponse<any>) => {
console.log('response', response);
return response.body.map(data => {
return new Users(data);
});
}));
}
此功能在Android 我尝试此项目在Simulator Iphone 6中运行,但是此功能不起作用。显示 '名称':HttpErrorResponse'消息':Http失败响应来自
https://www.............../details 您能和我分享任何想法吗,IOS中会发生什么?