-1
angular.module('test').controller('list', function($scope) {
// Call entire test controller here
});
angular.module('test')
.controller('getCustomers', function($scope) {
});
他のコントローラの機能にアクセスするには、これを実装する必要があります。anglejsの単一テンプレートで複数のコントローラを呼び出す方法は?
「共通コントローラ機能の作成」の可能な複製(http://stackoverflow.com/questions/11324202/creating-common-controller-functions) – Mistalis