0
所以我有一個下拉..如何根據AngularJS中的選項值隱藏表格行?
<select ng-model="dropdown">
<option ng-value="1">1</option>
<option ng-value="2">2</option>
<option ng-value="all">All</option>
</select>
和一張桌子..
<table>
<tr ng-repeat="d in data">
<td ng-bind="d.number"></td> // 0 or 1
<td>Other TD's</td>
<td>Other TD's</td>
</tr>
</table>
我想要做的是,當我在下拉列表中選擇,例如數2
,所有其他行中該表將被隱藏,但ng-bind="d.number"
等於2
的行除外。
所以我試圖到目前爲止,這是
<table>
<tr ng-repeat="d in data" ng-if="d.number == dropdown">
<td ng-bind="d.number"></td> // 0 or 1
<td>Other TD's</td>
<td>Other TD's</td>
</tr>
</table>
但是,當我在下拉列表中選擇all
,表是空的了。
有沒有更乾淨的方法來做到這一點?提前致謝。
也許你嘗試過這樣的:
也許使用過濾器?類似於'
回答
可以使用角度
filter
做象下面這樣: Plunkr來源
2017-01-07 15:19:59 superUser
相關問題