Angular——自定义过滤器

基本介绍

除了使用AngularJS内建过滤器外,还可以根业务需要自定义过滤器,通过模块对象实例提供的filter方法自定义过滤器。

基本使用

(1)input是将绑定的数据以参数的形式传入

(2)input后面的参数也就是:后面的参数,指导在视图时候该如何传递参数

(3)filter方法的回调函数将函数作为返回值,最后这个函数会在视图中进行调用,并且返回值

App.filter('demo', function () {
    return function (input, arg) {
      return input + ' Hello ' + arg;
    }
});
<!DOCTYPE html>
<html lang="en" ng-app="App">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="../libs/angular.min.js"></script>
</head>
<body>
<div ng-controller="DemoController">
    <span>{{name|demo:123}}</span><br>
    <span>{{text|capitalize}}</span>
</div>
<script>
    var App = angular.module('App', []);
    App.controller('DemoController', ['$scope', function ($scope) {
        $scope.name = 'wqx';
        $scope.text = 'hello world';
    }]);
    App.filter('demo', function () {
        return function (input, arg) {
            return input + ' Hello ' + arg;
        }
    });
    App.filter('capitalize', function () {
        return function (input) {
            return input[0].toUpperCase() + input.slice(1);
        }
    });
</script>
</body>
</html>
//返回值
wqx Hello 123
Hello world

 

转载于:https://www.cnblogs.com/wuqiuxue/p/8413020.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值