我有一个用 ngResource 定义的工厂:
App.factory('Account', function($resource) {
return $resource('url', {}, {
query: { method: 'GET' }
});
});
我正在多次调用此工厂上定义的查询方法。调用可以异步发生,但我需要等待两个调用完成才能继续:
App.controller('AccountsCtrl', function ($scope, Account) {
$scope.loadAccounts = function () {
var billingAccounts = Account.query({ type: 'billing' });
var shippingAccounts = Account.query({ type: 'shipping' });
// wait for both calls to complete before returning
};
});
有没有办法使用 ngResource 定义的 AngularJS 工厂来做到这一点,类似于 jQuery 的 $.when().then() 功能?我不希望将 jQuery 添加到我当前的项目中。