我有一个ionic4项目,我正在对服务器执行一些https请求,以获取一些数据。
var headers = new Headers();
headers.append('access_token', MYTOKEN );
let options = new RequestOptions({ headers: headers });
return this.http.get('https://myserver/public/search?start_date="2018-08-06T12:11:05.734Z"&stop_date="2018-08-06T13:11:05.734Z"',options)
.retry(NUM_HTTP_RETRIES)
.map((res:Response) => res.json())
.toPromise();
这在Android设备,浏览器,iphone 6上运行良好。但是,我已经在装有iOS 9.3.5的iPad2上进行了尝试,但出现3个错误:
在config.xml中,我可以选择
<access origin="*" />
有什么想法吗?
谢谢