コントローラーファイルには次のものがあります。
var Subject = $resource('/api/TestAccounts/:action', { applicationId: 3 }, {
'getSelect': { method: 'GET', params: { action: 'GetSelect' } }
});
Subject.getSelect({ applicationId: 3 },
function (resp) {
$scope.testAccounts = resp;
gridData = null;
}
);
サーバーコードが実行され、次のように返されます。
[{"id":5,"name":"xxx"},{"id":6,"name":"yyy"}]
ただし、次のエラーが表示されます。
TypeError: Object #<g> has no method 'push'
at copy (http://127.0.0.1:81/Scripts/angular.js:577:21)
誰かが私が間違っていることを知っていますか?