我正在尝试使用与数据库的 API 连接创建移动应用程序。有时我没有收到任何错误,并且在 API 上一切正常,但通常我会收到这种错误。(见下图)
这是我的代码:
let headers = new Headers ({
'Accept' : 'application/json',
'Authorization' : 'Bearer ' + this.token
});
let options = new RequestOptions({ headers : headers });
return new Promise((resolve, reject) => {
this.http.get('https://mywebsite.com/api', options)
.toPromise()
.then((response) =>
{
if(response){
console.log('API Response : ', response.json());
var _response = response.json();
resolve(response.json());
}
this.loadingSrvc.hide();
})
.catch((error) =>
{
this.loadingSrvc.hide();
if(error){
console.error('API Error : ', error.status);
console.error('API Error : ', JSON.stringify(error));
reject(error.json());
}
});
});
我正在使用Ionic CLI PRO v4.2.1和 MySQL--phpMyAdmin 作为数据库
我的主要困境是有时它有效,有时它不起作用,我什至不知道原因。