angularjs TypeError: undefined is not a function factory

angularjs TypeError: undefined is not a function factory

我正在玩 angularjs。我试图简单地从 json 文件中提取数据。当我 运行 我的代码文件显示在网络中,但数据没有显示在页面上时,我在控制台中收到以下错误:

TypeError: undefined is not a function at Ob (lib/angular-1-2/angular.min.js:14:6)

我使用的代码如下:

var Services = angular.module('Services', ['ngResource']);
Services.factory('reportFactory', function($http){
    console.log(REPORT_LIST_URL);
    return{
        getReports: function(callback){
            $http.get(REPORT_LIST_URL).success(callback);
        }
    }
});

function ReportsCtrl($scope, $http, reportFactory) {
    $scope.reportsList = [];
    console.log($scope.reportsList);
    console.log("Get report list from json file");
    console.log("before the factory");
    reportFactory.getReports(function(data){
       $scope.reportsList = data;
    });
}

json 文件的示例

{
  "Reports": {
    "Productivity": [
      {
        "name": "Productivity Summary",
        "value": "Productivity"
      },
      {
        "name": "Time Summary",
        "value": "TimeSummary"
      }
    ]
  }
}

非常感谢任何帮助或建议。

谢谢

确保工厂和控制器都在同一个应用程序中。 我在工厂做了一些重构,这样它就可以重用了。 如果工厂有小的变化。现在 getReports 将 return 一个承诺。我们可以在承诺得到解决时调用我们的函数。

var Services = angular.module('Services', ['ngResource']);
Services.factory('reportFactory', function($http){
    console.log(REPORT_LIST_URL);
    return{
        getReports: function(){
            return $http.get(REPORT_LIST_URL); //returning promise
        }
    }
});

Services.controller('ReportsCtrl',function($scope, $http, reportFactory) {
    $scope.reportsList = [];
    console.log($scope.reportsList);
    console.log("Get report list from json file");
    console.log("before the factory");
    reportFactory.getReports().then(
    //success callback
     function(data){ 
       $scope.reportsList = data;
    },
    //error callback
    function(data){
       $scope.reportsList = data;
    });
});

希望对您有所帮助,谢谢。