Angularjs中比较使用的DateFormat库

Posted 小骚木

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angularjs中比较使用的DateFormat库相关的知识,希望对你有一定的参考价值。

angular.module(‘newApp‘)
  .factory(‘dateUtil‘, function() {
    var symbolMap = {
      ‘MM‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getMonth();
        }
        return date.getMonth() + 1;
      },
      ‘mm‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getMinutes();
        }
        return date.getMinutes();
      },
      ‘YY‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getFullYear();
        }
        return date.getFullYear();
      },
      ‘ss‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getSeconds();
        }
        return date.getSeconds();
      },
      ‘hh‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getHours();
        }
        return date.getHours();
      },
      ‘dd‘: function(date) {
        if (typeof(date) === ‘string‘) {
          var d = new Date(date);
          return d.getDate();
        }
        return date.getDate();
      }
    };

    function _makeNchar(char, n) {
      var str = [];
      while (n--) {
        str.push(char);
      }
      return str.join(‘‘);
    }

    function alignNumber(num, len, char) {
      num = num + ‘‘;
      if (num.length > len) {
        return num;
      } else {
        return _makeNchar(char, len - num.length) + num;
      }
    }

    function getRelativeDate(offset, date) {
      var relativeDate = new Date(date),
        dateValue = relativeDate.getDate() + offset;
      relativeDate.setDate(dateValue);
      return relativeDate;
    }return {
      format: function(date, fmtStr) {
        if (fmtStr) {
          return fmtStr.replace((/(MM|mm|YY|ss|hh|dd)/g), function(s) {
            return alignNumber(symbolMap[s](date), 2, ‘0‘);
          });
        }
      },
      getRelativeDate: getRelativeDate
    };
  });

 

以上是关于Angularjs中比较使用的DateFormat库的主要内容,如果未能解决你的问题,请参考以下文章

在日期时间选择器AngularJs中的特定日期显示颜色

使用 AngularJS 比较表单验证中的两个输入值

如何使用 angularjs 比较输入字段中的两个数字?

流动比较日期

AngularJS搭配啥后端框架比较合适

AngularJS forEach 比较下一个索引数组