【发布时间】:2015-10-13 21:55:11
【问题描述】:
我的 html 文件中有这部分 html 代码,它会重复多次(我的 html 文件中有多个表...)
<table>
<thead>
<tr>
<th data-field="id">Vorname</th>
<th data-field="name">Nachname</th>
<th data-field="price">Anzahlaktien</th>
<th data-field="action">Wert</th>
<th data-field="action">Einkaufsdatum</th>
<th data-field="action">Ort</th>
<th data-field="action">Aktion</th>
</tr>
</thead>
<tbody> // different data
是否可以在 angular.js 中将其设置为“局部视图”? (就像在meteor.js中一样)所以我可以将它包含在它需要的地方{{myView}} ...
【问题讨论】:
标签: javascript angularjs