我在下面给出的
HTML中使用ngOptions指令:
原文链接:https://www.f2er.com/angularjs/141788.html<select ng-model="selectedGroupToShow.Id" ng-options="g.Id as g.Name for g in myGroups"> <option value>-- All --</option> </select>
我在ng-repeat中使用的过滤器显示我的数据是这样的:
filter:{GroupId:selectedGroupToShow.Id}"
即使我使用
filter:selectedGroupToShow
问题保持不变.重置过滤器..
这非常有效,但是当我想清除过滤器时(选择默认选项 – “全部”),它只会显示根本没有设置GroupId参数的数据.
在select中选择默认选项元素时,如何显示所有数据(清除过滤器)?