指令不能获得父指令的控制器

时间:2015-08-28 09:39:52

标签: angularjs controller directive

这个app应该是' first'的console.log控制器。指令,为什么没有发生?我几乎可以肯定这可行。 '第二'指令获取模板' third'来自attrs并附加它。 '第三'指令要求'首先'。

<!DOCTYPE html>
<html>

  <head>
    <script data-require="angular.js@1.4.3" data-semver="1.4.3" src="https://code.angularjs.org/1.4.3/angular.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>

  <body ng-app="myApp">
    <div first>123</div>
  </body>

</html>

angular.module('myApp', [])
  .directive('first', function() {
    return {
      restrict: 'A',
      link: postLink,
      template: '<div second="<div third></div>"></div>',
      controller: function() {}
    };

    function postLink(scope, element, attrs) {}
  })
  .directive('second', function($compile) {
    return {
      restrict: 'A',
      link: postLink
    };

    function postLink(scope, element, attrs) {
      var link = $compile(attrs.second);

      element
        .empty()
        .append(link(scope));
    }
  })  
  .directive('third', function() {
    return {
      restrict: 'A',
      require: '?^first',
      link: postLink,
      template: '<h1>Third</h1>'
    };

    function postLink(scope, element, attrs, FirstCtrl) {
      console.log(FirstCtrl);
    }
  })    

2 个答案:

答案 0 :(得分:0)

您需要在指令

的控制器部分编写功能
.directive('first', function() {
    return {
      restrict: 'A',
      link: postLink,
      template: '<div second="<div third></div>"></div>',
      controller: function() {
        console.log('write functionality here');
      }
    };

答案 1 :(得分:0)

问题在于您在将元素附加到其父元素之前编译元素,因此在编译时元素没有父元素,显然没有父控制器。

只有在将子元素附加到父元素后才需要编译它。

var child = angular.element(attrs.second)
element.empty().append(child);
$compile(child)(scope);

http://plnkr.co/edit/A1sZKQVrWDCsWaraiSNI?p=preview