1

给定

<mytag class="red">
     <mysubtag id="3"></mysubtag>
</mysubtag> 

子标签可能具有不同的含义,具体取决于父标签(可能是 mytag 或 mysupercustomtag)。我有所有父标签的指令。如何访问子标签?

我知道在 mytag 指令的链接函数中我可以使用children(), contents(), and data(), 甚至elm.find('#someid'). 像下面这样的东西可以解决问题吗?这样做的正确方法是什么?嵌套指令?

.directive('mytag', function() {
  return {
    restrict: 'A',
    template: '<div></div>',
    replace: true,
    link: function (scope, element, attrs) {
        // get the id of the first child (for example mysubtag)
        var newid = element.children()[0].getAttribute('id');
        // and put it in mytag, so that it is transformed into <div class="red" id="3">..
        attrs.$set('id', newid);
    }
  } 
})
4

1 回答 1

5

这种做法是不正确的。对于嵌套指令,您必须在父指令中声明控制器并在子指令中使用 require 属性来访问父控制器。请参见下面的子父指令角度文档中的示例。下面的链接将帮助您设置一个

http://angularjs.org/#create-components

于 2013-04-17T11:23:23.990 回答