我无法访问 AngularJS 控制器中的数组,但它可以在视图中使用。
在控制器中:.results
返回未定义
function TwitterCtrl($scope, $resource){
$scope.twitter = $resource('http://search.twitter.com/:action',
{action:'search.json', q:'angularjs', callback:'JSON_CALLBACK'},
{get:{method:'JSONP', params: {rpp: 4}}});
$scope.twitterResult = $scope.twitter.get({q:"example"});
//returns the resource object
console.log($scope.twitterResult)
//returns undefined
console.log($scope.twitterResult.results);
}
在视图中:.results
返回推文数组
//This returns an array of tweets
{{$scope.twitterResult.results}}