我有状态列表,我在状态名称上添加了搜索过滤器。 我有这样的数组:
stateList : [{name: 'abc', area:500},{name: '!def', area:500}]
我<li>
与ng-repeat="state in stateList | filter:{name:searchText}"
使用ng-model="searchText"
搜索在正常情况下工作,但是当我搜索时!(感叹号)。它没有给出任何结果。它应该给状态名称'!def'
答案 0 :(得分:2)
问题是AngularJS将!
令牌识别为“否定谓词”。不过,您可以像这样创建自定义myFilter
:
angular.module('app', []).controller('ctrl', function($scope) {
$scope.stateList = [{
name: 'abc',
area: 500
}, {
name: '!def',
area: 500
}]
}).filter('myFilter', function() {
return function(input, filter) {
if (!filter.name)
return input;
return input.filter(function(x) {
return x.name.indexOf(filter.name) != -1;
});
}
})
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app='app' ng-controller='ctrl'>
<input type='text' ng-model='searchText' />
<ul>
<li ng-repeat='state in stateList | myFilter : {name:searchText}'>{{state | json}}</li>
</ul>
</div>
答案 1 :(得分:0)
试试这种方式
<input type="text" ng-model="state.name"/>
ng-repeat="state in stateList | filter:state"