如何绑定到angular2中的data- *属性?

前端之家收集整理的这篇文章主要介绍了如何绑定到angular2中的data- *属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Angular 2 data attributes1
假设我有很大的单元格网格,我想添加数据行和数据库属性值并从模型绑定.我如何绑定数据行从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>
这应该做你想要的
[attr.data-row]="row.index" [attr.data-col]="cell.index"
原文链接:/angularjs/140646.html

猜你在找的Angularjs相关文章