2015-02-09 94 views
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 

我該如何拯救從我的服務器文件?

回答

1

請嘗試以下代碼

  var app = angular.module('myApp', ['ionic']); 
      app.controller('mainInfoFactory', ['$scope', '$http', function($scope,$http) { 
       $http.get("http://myurl.myext/myfile.json") 
       .success(function (response) 
       { 
       $scope.advices = response; 
       }) 
      .error(function(data) { 
       alert("ERROR"); 
       }); 
      }]); 

這裏MYAPPmainInfoFactory分別AngularJS應用程序的名稱和控制器。

例如:納克應用內= 「對myApp」 NG控制器= 「mainInfoFactory」