自定义时间过滤器

  • 内置的时间过滤器效果
var app = angular.module('app', []);
    app.controller('myContrller', ['$scope', function ($scope) {
        $scope.curDate = new Date;
    }]);

{{curDate | date}}


  • 自定义的时间过滤器效果及代码
var app = angular.module('app', []);
    app.controller('myContrller', ['$scope', function ($scope) {
        $scope.curDate = new Date;
    }]);

{{curDate | FormatStrDate}}

app.filter('FormatStrDate', function() {
         return function(input) {
            var date=new Date(input);
            var formatDate=date.getFullYear()+"-"+(date.getMonth()+1)+"-"+date.getDate();
            return formatDate
            }
        })

你可能感兴趣的:(自定义时间过滤器)