2017-03-23 120 views
0

我在this post這裏詢問了一般問題。我以工作示例回答了問題;但是,當我嘗試使用此示例修改現有代碼時,出現錯誤。 請參閱下面的代碼和Plunker page父指令控制器傳遞給子指令時未定義

的Html

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.3/angular.min.js"></script> 
<div ng-app="myApp"> 
    <tmp-menu ng-disabled="true"> 
    <tmp-menu-link></tmp-menu-link> 
    <tmp-menu-link></tmp-menu-link> 
    </tmp-menu> 
</div> 

的JavaScript(AngularJS):

angular.module('myApp', []) 
.controller('MyDirectiveController', MyDirectiveController) 
.directive('tmpMenu', function() { 
    return { 
    restrict: 'AE', 
    replace:true, 
    transclude:true, 
    scope:{ 
     disabled: '=?ngDisabled' 
    }, 
    controller: 'MyDirectiveController', 
    template: '<div>myDirective Disabled: {{ disabled }}<ng-transclude></ng-transclude></div>', 
    link: function(scope, element, attrs) { 


    } 
    }; 
}) 
.directive('tmpMenuLink', function() { 
    return { 
    restrict: 'AE', 
    replace:true, 
    transclude:true, 
    scope:{ 
    }, 
    required:'^^tmpMenu', 
    template: '<div>childDirective disabled: {{ disabled }}</div>', 
    link: function(scope, element, attrs, MyDirectiveCtrl) { 
     console.log(MyDirectiveCtrl); 

     scope.disabled = MyDirectiveCtrl.isDisabled(); 

    } 
    }; 
}) 

function MyDirectiveController($scope) { 
    this.isDisabled = function() { 
    return $scope.disabled; 
    }; 
} 

內部指令tmpMenuLinkMyDirectiveCtrl不確定。 這是爲什麼?

回答

1

你有一個錯字在你的代碼:

required:'^^tmpMenu', 

將其更改爲

require:'^^tmpMenu', 

入住這plunkr

https://plnkr.co/edit/DgyW3OFgr1GyAR8fuATi?p=preview

+0

在此處添加後續問題:http://stackoverflow.com/questions/43128652/child-directive-not-updated-when-parent-directive-property-changes – user1351452

1

因爲它是require而不是required

angular.module('myApp', []) 
 
    .controller('MyDirectiveController', MyDirectiveController) 
 
    .directive('tmpMenu', function() { 
 
    return { 
 
     restrict: 'AE', 
 
     replace: true, 
 
     transclude: true, 
 
     scope: { 
 
     disabled: '=?ngDisabled' 
 
     }, 
 
     controller: 'MyDirectiveController', 
 
     template: '<div>myDirective Disabled: {{ disabled }}<ng-transclude></ng-transclude></div>', 
 
     link: function(scope, element, attrs) {} 
 
    }; 
 
    }) 
 
    .directive('tmpMenuLink', function() { 
 
    return { 
 
     restrict: 'AE', 
 
     replace: true, 
 
     transclude: true, 
 
     require: '^^tmpMenu', 
 
     template: '<div>childDirective disabled: {{ disabled }}</div>', 
 
     link: function(scope, element, attrs, MyDirectiveController) { 
 

 
     scope.disabled = MyDirectiveController.isDisabled(); 
 

 
     } 
 
    }; 
 
    }) 
 

 
function MyDirectiveController($scope) { 
 
    this.isDisabled = function() { 
 
    return $scope.disabled; 
 
    }; 
 
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.3/angular.min.js"></script> 
 
<div ng-app="myApp"> 
 
    <tmp-menu ng-disabled="true"> 
 
    <tmp-menu-link></tmp-menu-link> 
 
    <tmp-menu-link></tmp-menu-link> 
 
    </tmp-menu> 
 
</div>

相關問題