我正在尝试以递归方式到达父“框”指令的控制器:
<body ng-app="main">
<!-- no nesting: parent is the just body -->
<box></box>
<script type="text/javascript">
angular.module('main', [])
.directive('box', function() {
return {
restrict: 'E',
controller: function() { },
require: '?^box', // find optional PARENT "box" directive
link: function(scope, iElement, iAttrs, controller) {
// controller should be undefined, as there is no parent box
alert('Controller found: ' + (controller !== undefined));
}
};
});
</script>
</body>
我希望控制器变量undefined
在链接函数中,但我得到了实际盒子指令的控制器。
所以我的问题是......在这种情况下如何访问 PARENT 控制器:
<box>
<box></box>
</box>