'名称':HttpErrorResponse'消息':来自https://www.............../details的Http故障响应

时间:2019-08-14 09:50:33

标签: ios https nativescript response

我对此代码有疑问:

我正在使用此功能从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中会发生什么?

0 个答案:

没有答案