2017-01-01 1 views
0

angleのlimitToとfilterを併用しようとしていますが、正しく動作していないようです。私は検索ボックスに値を入力し、検索を押すことができるようにしたい。その後、フィルターボックスに数字を入力して表示された結果を制限し、適用フィルターを押します。しかし、そこに数字を入力すると、結果をその金額に制限するのではなく、すべての結果がクリアされます。助言がありますか?たとえば、サイモンを検索してみてください。次に、上部のボックスに2を入力し、[フィルタを適用]をクリックして何が起こるかを確認します。AngularJS - limitTo&filter

Plunker:

https://plnkr.co/edit/Y522GAdShVhseAKNWouK?p=preview

angular.module('userApp', []).controller('myCtrl', function($scope) { 

    var vm = this; 

    $scope.users = [ 
    {'username':'david', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'michael', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'ben', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'simon', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'allen', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'crystal', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'meth', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'bryan', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'simon', 'email':'[email protected]', 'name':'Some Name'}, 
    {'username':'simon', 'email':'[email protected]', 'name':'Some Name'} 
    ]; 

    vm.showAll = function() { 
     $scope.limit = undefined; 
    }; 

    vm.showMore = function(display) { 
     $scope.limit = display; 
    }; 

    vm.search = function(searchBar) { 
     $scope.searchKeyword = searchBar; 
    }; 

}); 

<!DOCTYPE html> 
<html> 

    <head> 
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script> 
    <link rel="stylesheet" href="style.css" /> 
    <script src="script.js"></script> 
    </head> 

    <body ng-app="userApp" ng-controller="myCtrl as main"> 
    <h1>Hello Plunker!</h1> 

    <input type="text" ng-model="display"> 
     <button type="button" ng-click="main.showMore(display);">Apply Filter</button> 
    <button type="button" ng-click="main.showAll();">Show All</button> 
    <br> 
    <br> 
     <input type="text" ng-model="searchBar" place="enter search keyword"> 
     <button ng-click="main.search(searchBar);" type="button">Search</button> 



    <table> 
     <tr> 
     <th>Username</th> 
     <th>Email</th> 
     <th>Name</th> 
     </tr> 
     <tr ng-repeat="person in users | limitTo: limit | filter: searchKeyword"> 
     <td>{{ person.username }}</td> 
     <td>{{ person.email }}</td> 
     <td>{{ person.name }}</td> 
     </tr> 
    </table> 
    </body> 

</html> 

答えて

1

それが最初に制限されてあなたは、それらを好転させる必要があり、それがフィルタリングを行います。だからあなたのHTMLがに変更します。

<tr ng-repeat="person in users | filter: searchKeyword | limitTo: limit"> 
+0

完璧な、ありがとう! –

関連する問題