我有一个指令可以嵌入原始内容,对其进行解析,并使用原始内容中的信息来帮助构建新内容。它的要点是这样的:
.directive('list', function() {
return {
restrict: 'E',
transclude: true,
templateUrl: '...',
scope: true,
controller: function($scope, $element, $attrs, $transclude) {
var items;
$transclude(function(clone) {
clone = Array.prototype.slice.call(clone);
items = clone
.filter(function(node) {
return node.nodeType === 1;
})
.map(function(node) {
return {
value: node.getAttribute('value')
text: node.innerHTML
};
});
});
// Do some stuff down here with the item information
}
}
});
然后,我像这样使用它:
<list>
<item value="foo">bar</item>
<item value="baz">qux</item>
</list>
这一切都像这样正常工作。当我尝试使用ng-repeat
指令内容内部时会出现问题,如下所示:
<list>
<item ng-repeat="item in items" value="{{ item.value }}">{{ item.text }}</item>
</list>
当我尝试这样做时,没有项目。任何人都知道为什么这不起作用,或者是否有更好的方法来完成同样的事情?