• 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
        };
      });
  • 相关阅读:
    Android百度地图
    Android开发性能优化大总结
    解析Android开发优化之:从代码角度进行优化的技巧
    073 HBASE的读写以及client API
    072 HBase的架构以及各个模块的功能
    071 HBase的安装部署以及简单使用
    070 关于HBase的概述
    069 Hue协作框架
    068 Oozie任务调度框架
    集合的知识点梳理(List,Set,不包含泛型)
  • 原文地址:https://www.cnblogs.com/ccblogs/p/5266489.html
Copyright © 2020-2023  润新知