我在按字母(1.5.8)中的类型(数字)过滤列表时遇到一些问题
我的重复过滤器如下:
ng-repeat="activity in guild.history_updates | filter : {
action_type: filters.action_type,
user_id: filters.user,
}"
和我的过滤器
<md-input-container class="md-block">
<label>Type</label>
<md-select ng-model="filters.action_type">
<md-option>
All
</md-option>
<md-option ng-repeat="action_type in guildActivityCtrl.action_types"
ng-value="action_type.type">
{{action_type.name}} ({{ action_type.type }})
</md-option>
</md-select>
</md-input-container>
当我在action_type 1上进行过滤时我也会获得操作类型10
但是当我将过滤器变为10时,我得到了正确的结果
其他所有操作类型也都已过滤良好(例如action_type 3)
答案 0 :(得分:4)
ng-repeat="activity in guild.history_updates | filter:{action_type:filters.action_type,user_id: filters.user}:true"
在过滤器后添加“:true”应将其更改为严格的相等性检查,现在比较数值。
希望这会有所帮助。
https://docs.angularjs.org/api/ng/filter/filter
Arguments部分定义了比较器。
答案 1 :(得分:1)
像Neal Hamilton所说,我们需要添加:true
来添加严格的相等检查。
当md-select的输出不是数字时,添加:true
不会有效,所以我们可以添加一个过滤器来将输出解析为如下数字:
.filter('parseInt', function() {
return function(number) {
if(!number) {
return false;
}
return parseInt(number , 10);
};
})
我们可以将此过滤器添加到ng-repeats&#39;过滤像:
ng-repeat="activity in guild.history_updates | filter : {
action_type: (filters.action_type | parseInt ),
user_id: filters.user,
} : true"
修改:当您不想严格检查过滤器中的每个值时,您可以使用多个过滤器,例如:
ng-repeat="activity in guild.history_updates
| filter : {
action_type: (filters.action_type | parseInt ),
} : true
| filter: {
user_id: filters.user
}"