Dans un module, un contrôleur peut hériter des propriétés à partir d'un contrôleur de l'extérieur:
var app = angular.module('angularjs-starter', []);
var ParentCtrl = function ($scope, $location) {
};
app.controller('ChildCtrl', function($scope, $injector) {
$injector.invoke(ParentCtrl, this, {$scope: $scope});
});
Exemple par le biais de: http://blog.omkarpatil.com/2013/02/controller-inheritance-in-angularjs.html
Peut aussi un contrôleur à l'intérieur d'un module d'hériter d'un frère?
var app = angular.module('angularjs-starter', []);
app.controller('ParentCtrl ', function($scope) {
//I'm the sibling, but want to act as parent
});
app.controller('ChildCtrl', function($scope, $injector) {
$injector.invoke(ParentCtrl, this, {$scope: $scope}); //This does not work
});
Le deuxième code ne fonctionne pas depuis $injector.invoke
nécessite une fonction comme premier paramètre et ne trouve pas la référence à l' ParentCtrl
.