参见英文答案 >
Angular 2 data attributes1
假设我有很大的单元格网格,我想添加数据行和数据库的属性值并从模型绑定.我如何绑定数据行从angular2(在Dart的beta0).
假设我有很大的单元格网格,我想添加数据行和数据库的属性值并从模型绑定.我如何绑定数据行从angular2(在Dart的beta0).
与data-row =“{{boundVal}}”的绑定似乎不起作用.
(没有数据属性出现在输出html中)
例如.
<table> <tr *ngFor="#row of rows" > <td *ngFor="#cell of row.cells" data-row="{{row.index}}" data-col="{{cell.index}}" > </td> </tr> </table>
这应该做你想要的
原文链接:/angularjs/140646.html[attr.data-row]="row.index" [attr.data-col]="cell.index"