Angularjs 필터는 Anglejs의 뛰어난 기능 중 하나입니다. 언젠가는 사용자 정의 필터를 사용해야 할 수도 있으며 운 좋게도 이 블로그 게시물을 찾았습니다.
아래는 맞춤 필터의 모습입니다(myfilter 참고).
저희 맞춤 필터는 'myfilter'라고 하며 ':'으로 구분된 4개의 매개변수가 있습니다.
사용될 샘플 입력은 다음과 같습니다.
$scope.friends = [{name:'John', phone:'555-1276'}, {name:'Annie', phone:'800-BIG-MARY'}, {name:'Mike', phone:'555-4321'}, {name:'Adam', phone:'555-5678'}, {name:'David', phone:'555-8765'}, {name:'Mikay', phone:'555-5678'}];
필터는 전화번호에 "555"가 포함된 항목만 표시합니다. 샘플 출력은 다음과 같습니다.
Name Phone John 555-1276 Mike 555-4321 Adam 555-5678 David 555-8765 Mikay 555-5678
'555' 필터링의 처리 흐름은 필터 'myfilter'의 네 번째 매개변수인 'windowScopedFilter'에 의해 실행됩니다.
다음 기능을 구현해 보겠습니다(각 입력 매개변수에 로깅 추가).
var myapp = angular.module('MyFilterApp', []); myapp.filter('myfilter', function() { return function(input, param1) { console.log("------------------------------------------------- begin dump of custom parameters"); console.log("input=",input); console.log("param1(string)=", param1); var args = Array.prototype.slice.call(arguments); console.log("arguments=", args.length); if (3<=args.length) { console.log("param2(string)=", args[2]); } if (4<=args.length) { console.log("param3(bool)=", args[3]); } console.log("------------------------------------------------- end dump of custom parameters"); // filter if (5<=args.length) { return window[args[4]](input); } return input; }; });
위 코드의 대부분은 로그됩니다(번역자 주: 콘솔에 정보 표시). 실제로 필터링을 완료하는 데 가장 중요한 부분은 다음과 같습니다.
// filter if (5<=args.length) { return window[args[4]](input); } return input;
"return window[args[4]](input)"은 네 번째 매개변수인 'windowScopedFilter'를 호출합니다.
콘솔 출력은 다음과 같습니다.
"------------------------------------------------- begin dump of custom parameters" custom_filter_function.html:21 "input=" [object Array] custom_filter_function.html:22 "param1(string)=" "param1" custom_filter_function.html:23 "arguments=" 5 custom_filter_function.html:25 "param2(string)=" "param2" custom_filter_function.html:27 "param3(bool)=" true custom_filter_function.html:30 "------------------------------------------------- end dump of custom parameters" custom_filter_function.html:32 "------------------------------------------------- begin dump of custom parameters" custom_filter_function.html:21 "input=" [object Array] custom_filter_function.html:22 "param1(string)=" "param1" custom_filter_function.html:23 "arguments=" 5 custom_filter_function.html:25 "param2(string)=" "param2" custom_filter_function.html:27 "param3(bool)=" true custom_filter_function.html:30 "------------------------------------------------- end dump of custom parameters" custom_filter_function.html:32
전체 코드:
<html> <head> <script src="angular.min.js"></script> <script type="text/javascript"> function windowScopedFilter (input) { var output = []; angular.forEach(input, function(v,k){ if (v.phone.contains("555")) { output.push(v); } }); return output; } var myapp = angular.module('MyFilterApp', []); myapp.filter('myfilter', function() { return function(input, param1) { console.log("------------------------------------------------- begin dump of custom parameters"); console.log("input=",input); console.log("param1(string)=", param1); var args = Array.prototype.slice.call(arguments); console.log("arguments=", args.length); if (3<=args.length) { console.log("param2(string)=", args[2]); } if (4<=args.length) { console.log("param3(bool)=", args[3]); } console.log("------------------------------------------------- end dump of custom parameters"); // filter if (5<=args.length) { return window[args[4]](input); } return input; }; }); myapp.controller('MyFilterController', ['$scope', function($scope) { $scope.friends = [{name:'John', phone:'555-1276'}, {name:'Annie', phone:'800-BIG-MARY'}, {name:'Mike', phone:'555-4321'}, {name:'Adam', phone:'555-5678'}, {name:'David', phone:'555-8765'}, {name:'Mikay', phone:'555-5678'}]; }]); </script> </head> <body ng-app="MyFilterApp"> <div ng-controller="MyFilterController"> <table id="searchTextResults"> <tr><th>Name</th><th>Phone</th></tr> <tr ng-repeat="friend in friends |myfilter:'param1':'param2':true:'windowScopedFilter'"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> </tr> </table> </div> <hr> </body> </html>