将new Date() 格式化为 ’2018-10-11‘ 的字符串格式

Posted Cryst

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将new Date() 格式化为 ’2018-10-11‘ 的字符串格式相关的知识,希望对你有一定的参考价值。

 

function dateToString( date , format ){
        if(!date) return "";
        if (!Common.type.isDate(date)) return ""; //详见博客:常用类型判断
        format = format ? format : "y-m-d";
        switch(format){
            case "y-m":
                return date.getFullYear() + "-" + datePad( date.getMonth() + 1, 2 );
            case "y-m-d":
                return date.getFullYear() + "-" + datePad( date.getMonth() + 1, 2 ) + "-" + datePad( date.getDate(), 2 );
            case "h-m-s":
                return datePad( date.getHours(), 2 ) + ":" + datePad( date.getMinutes(), 2 ) + ":" + datePad( date.getSeconds(), 2);
            case "y-m-d-h-m-s":
                return date.getFullYear() + "-" + datePad( date.getMonth() + 1, 2 ) + "-" + datePad( date.getDate(), 2 ) + " " + datePad( date.getHours(), 2 ) + ":" + datePad( date.getMinutes(), 2 ) + ":" + datePad( date.getSeconds(), 2);
        }
    }

 function datePad(num, n){  
        if( ( num + "" ).length >= n )
        return num; //一位数
        return arguments.callee( "0" + num, n ); //两位数
     }

 Common.type.isDate: function() {
        for (var b = 0, a = arguments.length; b < a; b++) {
            o = arguments[b];
            if (!(System.type.isObject(o) && o.constructor && (o.constructor.toString().indexOf("Date") > -1 || o instanceof Date))) {
                return false;
            }
        }
        return true;
     }

 

 

   例:

      var today = new Date();

    dateToString(today);  // ‘2017-10-11‘

      dateToString(today,‘y-m‘);  //‘2017-10‘

      dateToString(today,‘y-m-d-h-m-s‘);  //‘2017-10-11 16:42:59‘

 

以上是关于将new Date() 格式化为 ’2018-10-11‘ 的字符串格式的主要内容,如果未能解决你的问题,请参考以下文章

swift 将Date转换为Int,或将当前Date格式化为String

如何将 18 位双精度格式化为 10 字符串字符

使用 date-fns 2.x 版时,如何将日期时间格式化为 am/pm,不带句点?

将日期时间格式化为天

js到底是如何把字符串变量格式化为指定格式的日期的呢

artTemplate/template.js模板将时间格式化为正常的日期