AngularJS:服务查询返回零结果

时间:2013-05-05 21:33:54

标签: javascript angularjs angularjs-scope angularjs-service angularjs-routing

我的app.js看起来像

var app = angular.module('pennytracker', [
  '$strap.directives',
  'ngCookies',
  'categoryServices'
]);

app.config(function($routeProvider) {
  console.log('configuring routes');
  $routeProvider
    .when('/summary', { templateUrl: '../static/partials/summary.html'})
    .when('/transactions', { templateUrl: '../static/partials/transaction.html', controller: 'AddTransactionController' })
});

而我的app/js/services/categories.js看起来像

angular.module('categoryServices', ['ngResource']).
  factory('Category', function($resource){
    return $resource(
      '/categories/:categoryId',
      {categoryId: '@uuid'}
    );
  });

我有一条路线

  .when('/transactions', { templateUrl: '../static/partials/transaction.html', controller: 'AddTransactionController' })

我的控制器app/js/controllers/transactionController.js看起来像

function AddTransactionController($scope, $http, $cookieStore, Category) {
 // some work here
  $scope.category = Category.query();
  console.log('all categories - ', $scope.category.length);
}

当我运行我的应用程序时,我将console.log视为

all categories -  0 

我在这里做错了什么?

1 个答案:

答案 0 :(得分:15)

Category.query()是异步的。它立即返回一个空数组,并在响应到达时添加来自请求的结果 - 来自http://docs.angularjs.org/api/ngResource.$resource

  

重要的是要意识到调用$ resource对象方法   立即返回一个空引用(对象或数组取决于   IsArray的)。一旦数据从服务器返回现有数据   引用填充了实际数据。这是一个有用的技巧   因为通常将资源分配给当时的模型   由视图呈现。拥有一个空对象导致无法渲染,   一旦数据从服务器到达,则填充对象   随着数据和视图自动重新呈现自己显示   新数据。

如果您需要在控制器中访问结果,您应该在回调函数中执行此操作:

$scope.category = Category.query(function(){
  console.log('all categories - ', $scope.category.length);
});