我想构建两个具有相同记录结构的表。 一个表是Main,另一个表是Archiv。 该记录是带有{{rec.Name}},{{rec.Age}}等col-sm-x结构的bootstrap div。 从记录内容我做了一个tablerecord.html模板,我想用两个不同的ng-repeat来构建表。
<div> ng-repeat="rec in MainTable"><record_template/></div>
and
<div> ng-repeat="rec in Archiv""><record_template/></div>
要加载记录模板,我使用angular指令“recordTemplate”。 如何在record_template中注入“rec”变量?
提前致谢。
答案 0 :(得分:0)
您可以在指令组件中使用@input注释
https://angular.io/guide/attribute-directives#binding-to-an-input-property
答案 1 :(得分:0)
As i don't know how you written your directive. you can check the below link.
http://jsbin.com/gopula/1/edit?html,js,output
and try this
<div> ng-repeat="rec in MainTable" record_template ="rec"/></div>
and
<div> ng-repeat="rec in Archiv" record_template="rec"/></div>
Hope this will help you