2014-04-01 84 views
0

我得到以下錯誤:

TypeError: Cannot call method 'then' of undefined 

這個代碼:

App.controller('MainCtrl', ['$scope', 'Main', 'MainFilter', function($scope, Main, MainFilter) { 
    $scope.scope_variable = Main.query().$promise.then(function(result) { MainFilter.do_something(result) }); 
}]); 

App.factory('Main', ['$resource', function($resource) { 
    return $resource('/main_resource.json') 
}]); 

我一直努力遵循使用控制器內承諾的這些其他例子(我沒有使用$ routeProvider),但似乎沒有任何工作。

AngularJS using $resource service. Promise is not resolved by GET request

AngularJS resource promise

+0

你在哪裏定義'$ promise'? –

+0

'Main.query({},function(data){console.log(data)})' – tymeJV

+0

我假定$ promise被定義在$ resource中... –

回答

0

@tymeJV提供這樣的回答:

$ scope.scope_variable = Main.query({},功能(結果){MainFilter.do_something(結果)});

+0

@tymeJV,如果您提供答案,我會將其標記爲已接受 –