J'ai deux contrôleurs angulaires: function Ctrl1($scope) { $scope.prop1 = "First"; } function Ctrl2($scope) { $scope.prop2 = "Second"; $scope.both = Ctrl1.prop1 + $scope.prop2; //This is what I would like to do ideally } Je ne peux pas l'utiliser à l' Ctrl1intérieur Ctrl2car il n'est pas défini....