Ich habe zwei Angular-Controller:
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
}
Ich kann nicht verwenden Ctrl1
innerhalb Ctrl2
weil sie undefiniert ist. Wenn ich jedoch versuche, es wie folgt zu übergeben
function Ctrl2($scope, Ctrl1) {
$scope.prop2 = "Second";
$scope.both = Ctrl1.prop1 + $scope.prop2; //This is what I would like to do ideally
}
Ich erhalte eine Fehlermeldung. Weiß jemand, wie man das macht?
Tun
Ctrl2.prototype = new Ctrl1();
Scheitert ebenfalls.
HINWEIS: Diese Steuerungen sind nicht ineinander verschachtelt.