0
我的基於離子的應用程序在我的真實設備上使用ionic run android
進行部署時正常工作。然而,當我下載從谷歌播放版本完全相同,所有$ http請求失敗:
09-15 18:59:02.901: I/chromium(22744): [INFO:CONSOLE(26799)] "Failed to log in user [...]:
{"data":null,
"status":-1,
"config": {
"method":"GET",
"transformRequest":[null],
"transformResponse":[null],
"url":"https://example.com/something",
"headers":{
"Accept":"application/json, text/plain, */*",
"Authorization":"Basic c2ltb2324Ghlbmlu5322Ng=="}
},
"statusText":""}",
source: file:///android_asset/www/lib/ionic/js/ionic.bundle.js (26799)
這是我用我的請求
$http.get(config.apiUrl + "/user/").then(function (response) {
}
callback && callback($rootScope.authenticated, response.data);
}, function (err) {
$log.info("Failed to log in user [...]: " + JSON.stringify(err));
});
的應用程序現在工作了一年,但自上次上傳版本以來,我有這個問題。我沒有更新離子或任何東西,我的構建環境根本不應該改變。它真的在同一設備上工作,如果我使用的APK我本地,但不與谷歌播放一個....