此plunker根据搜索“Tim”(Json数据)正确填充静态Html表。
var arrItem = [];
angular.forEach($scope.items, function (item) {
if(item.fname === enteredValue.firstName || item.lname === enteredValue.lastName
||item.address === enteredValue.address && item.phone === enteredValue.phone){
arrItem.push({
first: item.fname,
last: item.lname,
address: item.address,
phone: item.phone
});
现在我想将这些数据放在NG-Grid中 此plunker尝试根据Tim搜索将此数据加载到NG Grid中。我尝试了很多方法来做到这一点。我应该使用ng-repeat吗? Ng表而不是ng-grid?
$scope.source= arrItem;
$scope.getPagedDataAsync($scope.source, $scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage);
答案 0 :(得分:1)