我正在开发一个Angular应用程序,我正在使用默认的$ httpService来处理http请求。
应用程序在我的所有设备上正常运行,但在我的[G]旧版Samsung Galaxy s2上运行(使用默认浏览器)。
在第一次请求时,我收到以下错误:
{
"data":null,
"status":-1,
"config": {
"method":"GET",
"transformRequest":[null],
"transformResponse":[null],
"url":"http://....",
"headers": {
"Accept": "application/json, text/plain, */*",
"Authorization": "Basic ....."
}
},
"statusText":""
}
我无法弄清楚问题出在哪里。
代码如下:
this.http.get(WebServices.localizations + this.currentLanguage.locale), success => {
var localizationsJson = <any[]>success.data;
var localizations = {};
....
});
谢谢!
答案 0 :(得分:1)