$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 の代わりに query メソッドを使用し、isArray を true に設定しても、同じ問題が発生します。何らかの理由で、データが then 関数内のスコープにバインドされていません。
これが繰り返しの質問である場合は申し訳ありませんが、どこを見ても、この場合の問題ではない $promise 関数に関連する未定義の問題しか見つかりませんでした。
ご支援いただきありがとうございます。