Au sein d'un module, un contrôleur peut hériter des propriétés d'un contrôleur externe:
var app = angular.module('angularjs-starter', []);
var ParentCtrl = function ($scope, $location) {
};
app.controller('ChildCtrl', function($scope, $injector) {
$injector.invoke(ParentCtrl, this, {$scope: $scope});
});
Exemple via: Lien mort : http://blog.omkarpatil.com/2013/02/controller-inheritance-in-angularjs.html
Un contrôleur à l'intérieur d'un module peut-il également 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 second code ne fonctionne pas car $injector.invoke
nécessite une fonction comme premier paramètre et ne trouve pas la référence à ParentCtrl
.