我有 AngularJs 控制器:
function MyController($scope, $http) {
// as $http.get() is async, success() returns promise but
// I need the actual value 'items'
var promise = $http.get(...)
.success(function(response) {return response.items;});
<waitForAjaxCall>
$scope.items = promise.get?();
$scope.firstItem = $scope.items[0];
//do stuff using $scope.firstItem
}
var myApp = angular.module('myApp',[]);
myApp.controller('MyController', ['$scope', '$http', MyController]);
如何确保在分配$scope.items
之前由 ajax 调用返回的值初始化?$scope.firstItem = ...
我看到的另一种方法是包装items
在调用 $http 的 angularjs 工厂中,但我仍然需要等待 ajax 调用在该工厂内完成。