【发布时间】:2016-08-13 23:03:37
【问题描述】:
下面的代码似乎不起作用。在 Angular 2 中甚至有可能吗?
<table class="table table-responsive" style="border:0">
<tr *ngFor="#column of columns" style="height:20px;">
<td class="text-right" style="padding-top:10px;border:0">
<h4> {{column | case}}: </h4>
</td>
<td class="text-center" style="padding-top:10px;border:0">
<input type="{{column == 'created_date' ? date : text}}" class="form-control" />
</td>
</tr>
</table>
【问题讨论】:
标签: javascript html angular