- AngularJS 教程
- AngularJS - 主页
- AngularJS - 概述
- AngularJS - 环境设置
- AngularJS - MVC 架构
- AngularJS - 第一个应用程序
- AngularJS - 指令
- AngularJS - 表达式
- AngularJS - 控制器
- AngularJS - 过滤器
- AngularJS - 表格
- AngularJS - HTML DOM
- AngularJS - 模块
- AngularJS - 表单
- AngularJS - 包括
- AngularJS-AJAX
- AngularJS - 视图
- AngularJS - 范围
- AngularJS - 服务
- AngularJS - 依赖注入
- AngularJS - 自定义指令
- AngularJS - 国际化
- AngularJS 应用程序
- AngularJS - ToDo 应用程序
- AngularJS - 记事本应用程序
- AngularJS - 引导应用程序
- AngularJS - 登录应用程序
- AngularJS - 上传文件
- AngularJS - 内嵌应用程序
- AngularJS - 导航菜单
- AngularJS - 切换菜单
- AngularJS - 订单
- AngularJS - 搜索选项卡
- AngularJS - 拖动应用程序
- AngularJS - 购物车应用程序
- AngularJS - 翻译应用程序
- AngularJS - 图表应用
- AngularJS - 地图应用程序
- AngularJS - 共享应用程序
- AngularJS - 天气应用
- AngularJS - 计时器应用程序
- AngularJS - 传单应用程序
- AngularJS - Lastfm 应用程序
- AngularJS 有用资源
- AngularJS - 问题与解答
- AngularJS - 快速指南
- AngularJS - 有用的资源
- AngularJS - 讨论
AngularJS - 过滤器
过滤器用于修改数据。它们可以使用管道 (|) 字符组合在表达式或指令中。以下列表显示了常用的过滤器。
先生。 | 名称和描述 |
---|---|
1 | 大写 将文本转换为大写文本。 |
2 | 小写 将文本转换为小写文本。 |
3 | 货币 将文本格式化为货币格式。 |
4 | 筛选 根据提供的条件将数组过滤为其子集。 |
5 | 订单比 根据提供的标准对数组进行排序。 |
大写过滤器
使用管道字符将大写过滤器添加到表达式中。在这里,我们添加了大写过滤器,以所有大写字母打印学生姓名。
Enter first name:<input type = "text" ng-model = "student.firstName"> Enter last name: <input type = "text" ng-model = "student.lastName"> Name in Upper Case: {{student.fullName() | uppercase}}
小写过滤器
使用管道字符将小写过滤器添加到表达式中。在这里,我们添加了小写过滤器,以所有小写字母打印学生姓名。
Enter first name:<input type = "text" ng-model = "student.firstName"> Enter last name: <input type = "text" ng-model = "student.lastName"> Name in Lower Case: {{student.fullName() | lowercase}}
货币过滤器
使用管道字符将货币过滤器添加到返回数字的表达式中。在这里,我们添加了货币过滤器以使用货币格式打印费用。
Enter fees: <input type = "text" ng-model = "student.fees"> fees: {{student.fees | currency}}
筛选
为了仅显示必需的主题,我们使用 subjectName 作为过滤器。
Enter subject: <input type = "text" ng-model = "subjectName"> Subject: <ul> <li ng-repeat = "subject in student.subjects | filter: subjectName"> {{ subject.name + ', marks:' + subject.marks }} </li> </ul>
按过滤器排序
要按分数对主题进行排序,我们使用 orderBy 标记。
Subject: <ul> <li ng-repeat = "subject in student.subjects | orderBy:'marks'"> {{ subject.name + ', marks:' + subject.marks }} </li> </ul>
例子
以下示例显示了上述所有过滤器的使用。
testAngularJS.htm
<html> <head> <title>Angular JS Filters</title> <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"> </script> </head> <body> <h2>AngularJS Sample Application</h2> <div ng-app = "mainApp" ng-controller = "studentController"> <table border = "0"> <tr> <td>Enter first name:</td> <td><input type = "text" ng-model = "student.firstName"></td> </tr> <tr> <td>Enter last name: </td> <td><input type = "text" ng-model = "student.lastName"></td> </tr> <tr> <td>Enter fees: </td> <td><input type = "text" ng-model = "student.fees"></td> </tr> <tr> <td>Enter subject: </td> <td><input type = "text" ng-model = "subjectName"></td> </tr> </table> <br/> <table border = "0"> <tr> <td>Name in Upper Case: </td><td>{{student.fullName() | uppercase}}</td> </tr> <tr> <td>Name in Lower Case: </td><td>{{student.fullName() | lowercase}}</td> </tr> <tr> <td>fees: </td><td>{{student.fees | currency}} </td> </tr> <tr> <td>Subject:</td> <td> <ul> <li ng-repeat = "subject in student.subjects | filter: subjectName |orderBy:'marks'"> {{ subject.name + ', marks:' + subject.marks }} </li> </ul> </td> </tr> </table> </div> <script> var mainApp = angular.module("mainApp", []); mainApp.controller('studentController', function($scope) { $scope.student = { firstName: "Mahesh", lastName: "Parashar", fees:500, subjects:[ {name:'Physics',marks:70}, {name:'Chemistry',marks:80}, {name:'Math',marks:65} ], fullName: function() { var studentObject; studentObject = $scope.student; return studentObject.firstName + " " + studentObject.lastName; } }; }); </script> </body> </html>
输出
在 Web 浏览器中打开文件testAngularJS.htm 。查看结果。