サーバーからの次の JSON 応答
[
"hello",
"world"
]
この ngResource サービスによって 2D 配列に解析されています
myService.factory('Name', function($resource){
return $resource(site_url+'api/accounts/:accountId/names/', {}, {
list: {method:'GET', params:{}, isArray:true}
});
});
そう呼ばれる
$scope.names = Name.list({accountId:$scope.account.id}, function(e){
console.log(e);
});
へのトレース
[{"0":"h","1":"e","2":"l","3":"l","4":"o"},{"0":"w","1":"o","2":"r","3":"l","4":"d"}]
ヒントはありますか?