AngularJS-filer
<!DOCTYPE html> <html ng-app="firstapp"> <head> <meta charset="utf-8" /> <title>Filter</title> <script type="text/javascript" src="http://code.angularjs.org/angular-1.0.1.min.js" ></script>
<script> var app = angular.module(‘firstapp‘, []); app.factory(‘data‘, function(){ return { message : "I‘m a data from factory" }; }); app.filter(‘firstfilter‘, function(message){ return function(message){ return message + ‘!!!!!!‘; } }); function firstController($scope, data){ $scope.data = data; } </script> </head> <body> <div ng-controller="firstController">
<h1>{{data.message | firstfiler}}</h1> </div> </body> </html>
app.filter(‘firstfilter‘, function(message){ return function(message){ return message + ‘!!!!!!‘; } });
通过app实例化一个filter,第一个参数为filter的名字,第二个参数是一个回调函数,参数message为
<h1>{{data.message | firstfiler}}</h1>
中的data.message,在回调函数中实现该filter的功能。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。