我正在尝试将数据分配给 $scope 变量。在我的 $promise.then() 函数内部它显示正确,但在函数外部它显示为未定义。以下是我的控制器代码:
angular.module('testSiteApp').controller('TestController', function ($scope, Tests) {
$scope.test = Tests.get({id: 1});
$scope.test.$promise.then(function(data) {
$scope.tasks = data.tasks;
console.log($scope.tasks);
});
console.log($scope.tasks);
});
then() 函数内部的结果:
[Object, Object, Object, Object]
then() 函数之外的结果:
undefined
我正在使用的“测试”服务工厂如下:
angular.module('testSiteApp').factory('Tests', function($resource) {
return $resource('/api/test/:id', {id: '@id'}, { 'update': { method: 'PUT' } } );
});
即使我对资源使用查询方法而不是 get 并将 isArray 设置为 true,我仍然会遇到同样的问题。由于某种原因,数据没有绑定到 then 函数内的我的范围。
如果这是一个重复的问题,我很抱歉,但我到处寻找,只发现与 $promise 函数有关的未定义问题,在这种情况下不是问题。
提前感谢您的支持。