我想在Angular 1.6中建立自己的“ng-repeat”作为练习
所以我在想:
我在结尾处获得元素(链接),根据范围变量对元素执行“forEach”循环等等...
问题是我的模板需要是动态的,我不知道“新ng-repeat”的元素是什么。
我尝试过类似的东西,但它不起作用:
myApp.directive("nirtz-repeat", function() {
return {
restrict : "A",
link : function (s,e,a) {
console.log(s);
console.log(e);
console.log(a);
return "<customElement>Example</customElement>";
},
template : this.link
};
});