<tr ng-repeat="model in ctrl.list | orderBy:ctrl.sortType:ctrl.sortReverse |
filter:ctrl.searchFilter" ng-click="goToPage('/responsibility/detail/' + model.id);"
>
<td>{{model.category}}</td>
<td>{{model.name}}</td>
<td>{{model.brand}}</td>
<td>{{model.model}}</td>
<td>{{model.count}}</td>
<td>{{model.description}}</td>
<td>{{model.conditionOf}}</td>
<td>{{model.serial}}</td>
<td>{{model.calibrationId}}</td>
</tr>
我有一個像 一個過濾器,它不會對搜索過濾哪個單詞包括「I」字符, 它不能識別的「我'字符。角JS濾波器大寫i(i)不識別
是否爲其他字符工作?此外,你可以顯示更多的代碼(控制器,更多的HTML代碼)也許JSFiddle? – CoachNono