我想對錶格中的列號SN進行搜索。在表格中進行角度搜索
在我的桌子上有很多信息,我希望能夠基於SN
進行搜索,但是當我加入filter
它甚至不載入我的表
這是我做過什麼: 在我的CONTROLER我的列表充滿:
$scope.List = {};
MyServices.getList()
.success(function (data) {
angular.forEach(data, function (value, index) {
$scope.List[value.SN] = {
Description: value.Description,
SN: value.SN
}
});
})
.error(function (error) {
$scope.status = 'Unable to load customer data: ' + error.message;
});
,這是我的HTML:
<label>Search: <input ng-model="search.SN"></label>
<tr ng-repeat="V in List| filter:search">
<td>{{V.SN}}</td>
<td>{{V.Description}}</td>
</tr>
您的ngModel是'search.SN',因此您的過濾器也應該是'search.SN'。 –
我做了你的建議,但仍然是同樣的問題。我已經閱讀了這個鏈接,看起來應該是我所做的工作,我不知道是什麼問題。 https://plnkr.co/edit/?p=preview – user3122648