最佳答案
假设我有非常大的单元格网格,我想添加 data-row 和 data-colAttribute 值,并从 model 绑定。如何从 angular2绑定 data-row (在 Dart 中为 beta0)。
使用 data-row = “{ bound Val }}”进行绑定似乎不起作用。 (输出 html 中没有数据属性)
例如。
<table>
<tr *ngFor="#row of rows" >
<td *ngFor="#cell of row.cells" data-row="{{row.index}}" data-col="{{cell.index}}" >
</td>
</tr>
</table>