0
在嘗試了this問題後,我再次詢問如何使用AngularJS在Ionic框架中從Web檢索數據。 基本上,我做了回答說:從網絡離子閱讀json文件
.factory('Advices', function($http) {
var advices = null;
$http.get('http://myurl.myext/myfile.json').success(function (data) {
advices = data;
}).error(function(error) {
console.log('error'); //even if there i print the error it prints nothing
});
//etcetera
我該如何拯救從我的服務器文件?