<body ng-app="angularcustomapp"> <div ng-controller="CustomCtrl"> <p>{{ name | convertUpper }}</p> </div> </body>JavaScript代码:
<script type="text/javascript"> var app = angular.module('angularcustomapp', []); app.filter('convertUpper', function () { return function (item) { return item.toUpperCase(); }; }); app.controller('CustomCtrl', function ($scope) { $scope.name = 'Welcome to Tutlane.com'; }); </script>