我是棱角分明的新人。所以我每天都会阅读很多有关角度的文章。我正在阅读有关自定义过滤器的文章。我看到代码并对其进行测试....发现有效,但有一个区域不清楚为什么我的自定义过滤器会在用户更改文本框中的值时触发?
但自定义过滤器和文本框之间没有关系。请查看代码并告诉我文本框值和客户过滤器之间的关系是什么,当文本框值更改时,自定义过滤器SearchList
将被触发。请看代码并指导我理解我有困惑的地方。
<div ng-app="myApp" ng-controller="MyController">
<label>Field:
<select ng-model="selectedFieldName">
<option value="">--Select Account--</option>
<option ng-repeat="(fieldname,fieldvalue) in customer[0]" ng-value="fieldname | uppercase">{{fieldname | uppercase}}</option>
</select>
</label>
<label>data: <input ng-model="searchText"></label>
<table class="table table-striped table-bordered">
<tr>
<td>ID</td>
<td>First Name</td>
<td>Last Name</td>
<td>Salary</td>
<td>Date of Birth</td>
<td>City</td>
<td>Phone</td>
</tr>
<tr ng-repeat="item in customer | filter:SearchList ">
<!-- orderBy:'$index':false -->
<td>{{ item.id }}</td>
<td>{{ item.firstname }}</td>
<td>{{ item.lastname }}</td>
<td>{{ item.salary }}</td>
<td>{{ item.dob }}</td>
<td>{{ item.city }}</td>
<td>{{ item.phone }}</td>
</tr>
</table>
</div>
var myApp = angular.module('myApp', []);
myApp.controller('MyController', function MyController($scope) {
$scope.selectedFieldName='';
$scope.searchText='';
$scope.SearchList = function(row) {
if ($scope.selectedFieldName && $scope.searchText) {
var propVal = row[$scope.selectedFieldName.toLowerCase()]+ '';
if (propVal) {
return propVal.toUpperCase().indexOf($scope.searchText.toUpperCase()) > -1;
} else {
return false;
}
}
return true;
};
$scope.customer = [
{
'id': 1,
'firstname': 'Tridip',
'lastname': 'Bhattacharjee',
'salary' : 15000,
'dob': '05/09/2013',
'city': 'kolkata',
'phone': '033 2589 7415'
},
{
'id': 2,
'firstname': 'Arijit',
'lastname': 'Banerjee',
'salary' : 25000,
'dob': '01/09/2010',
'city': 'Bihar',
'phone': '033 2589 9999'
},
{
'id': 3,
'firstname': 'Dibyendu',
'lastname': 'Saha',
'salary' : 20000,
'dob': '06/09/2011',
'city': 'Rachi',
'phone': '033 2589 3333'
},
{
'id': 4,
'firstname': 'Bisu',
'lastname': 'Das',
'salary' : 5000,
'dob': '05/01/2009',
'city': 'Silchar',
'phone': '033 2589 2222'
},
{
'id': 5,
'firstname': 'Soumyajit',
'lastname': 'Kar',
'salary' : 12000,
'dob': '09/08/2011',
'city': 'kanpur',
'phone': '033 3333 1894'
}
];
})
请参阅js fiddle https://jsfiddle.net/zjxa5g8o/