如何在ng-include内容中以角度

时间:2017-06-17 18:05:48

标签: javascript angularjs twitter-bootstrap

我想构建两个具有相同记录结构的表。 一个表是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”变量?

提前致谢。

2 个答案:

答案 0 :(得分:0)

答案 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