AngularJS コントローラーで配列にアクセスできませんが、ビューでは機能します。
コントローラー内: .results
undefined を返します
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}}