本篇文章主要介紹了angularJs使用$watch和$filter過濾器製作搜尋篩選實例,具有一定的參考價值,有興趣的夥伴們可以參考一下
整理文檔,搜刮出一個angularJs使用$watch和$filter過濾器製作搜尋篩選,稍微整理精簡一下做下分享。
<p ng-app="module" ng-controller="ctrl"> 搜索: <input type="text" ng-model="search"> <table border="1" width="600"> <tr> <td>编号</td> <td>点击数</td> <td>标题</td> </tr> <tr ng-repeat="(k,v) in lists"> <td>{{v.id}}</td> <td>{{v.click}}</td> <td>{{v.title}}</td> </tr> </table> </p> <script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', '$filter', function ($scope, $filter) { $scope.data = [ {id: 1, click: 100, title: '百度'}, {id: 2, click: 200, title: '腾讯'}, {id: 3, click: 300, title: '谷歌'}, ]; //临时数据用于显示 $scope.lists = $scope.data; $scope.$watch('search',function(n,o){ $scope.lists = $filter('filter')($scope.data,n); }); }]); </script>
效果圖:
#以上是關於angularJs如何使用$watch和$filter來過濾器製作搜尋篩選的實例程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!