首頁  >  問答  >  主體

javascript - 日期格式化推薦庫?


專案中使用moment.js,但是打包之後依賴了很多本地化文件,可以有什麼辦法只載入中文嗎?

或有其他輕量的日期格式化庫推薦?

淡淡烟草味淡淡烟草味2681 天前470

全部回覆(2)我來回復

  • 漂亮男人

    漂亮男人2017-05-19 10:15:26

    你去moment.js官网下在moment-with-locales.min.js啊, 就只有一個文件

    回覆
    0
  • 大家讲道理

    大家讲道理2017-05-19 10:15:26

    日期格式話的庫我感覺moment.js挺好的,封裝了很多功能,如果你不想用moment,你可以自己擴展Date,封裝方法:

    Date.prototype.format = function(pattern){
        function zeroize(num){
            return num<10?"0"+num:num;
        };
        var pattern = pattern;    //    YYYY-MM-DD 或 MM-DD-YYYY 或 YYYY-MM-DD , hh : mm : ss
        var dateObj = {
            "Y" : this.getFullYear(),
            "M" : zeroize(this.getMonth()+1),
            "D" : zeroize(this.getDate()),
            "h" : zeroize(this.getHours()),
            "m" : zeroize(this.getMinutes()),
            "s" : zeroize(this.getSeconds())
        };
        return pattern.replace(/YYYY|MM|DD|hh|mm|ss/g,function(match){
            switch(match){
                case "YYYY" :
                    return dateObj.Y;
                case "MM" :
                    return dateObj.M;
                case "DD" :
                    return dateObj.D;
                case "hh" :
                    return dateObj.h;
                case "mm" :
                    return dateObj.m;
                case "ss" :
                    return dateObj.s;
            };
        });
    };
    Date.prototype.past = function(pattern,pastDays){
        function zeroize(num){
            return num<10?"0"+num:num;
        };
        var pastday = new Date((this - 0) - 1000*60*60*24*pastDays);
        var pattern = pattern;    //    YYYY-MM-DD 或 MM-DD-YYYY 或 YYYY-MM-DD , hh : mm : ss
        var dateObj = {
            "Y" : pastday.getFullYear(),
            "M" : zeroize(pastday.getMonth()+1),
            "D" : zeroize(pastday.getDate()),
            "h" : zeroize(pastday.getHours()),
            "m" : zeroize(pastday.getMinutes()),
            "s" : zeroize(pastday.getSeconds())
        };
        return pattern.replace(/YYYY|MM|DD|hh|mm|ss/g,function(match){
            switch(match){
                case "YYYY" :
                    return dateObj.Y;
                case "MM" :
                    return dateObj.M;
                case "DD" :
                    return dateObj.D;
                case "hh" :
                    return dateObj.h;
                case "mm" :
                    return dateObj.m;
                case "ss" :
                    return dateObj.s;
            };
        });
    };
    Date.prototype.yestoday = function(pattern){
        return this.past(pattern,1);
    };
    Date.prototype.tomorrow = function(pattern){
        return this.past(pattern,-1);
    }
    Date.prototype.formatDate=function(str){
        str= str.toLowerCase();
        var that=this;
    
        if(/yyyy/.test(str)){
            str=str.replace(/yyyy/,this.getFullYear());
        }
        if(/mm/.test(str)){
            str=str.replace(/mm/,this.getMonth()+1);
        }
        if(/dd/.test(str)){
            str=str.replace(/dd/,this.getDate());
        }
        if(/hh/.test(str)){
            str=str.replace(/hh/,function(){
                return that.getHours()>=10?that.getHours():("0"+that.getHours());
            });
        }
        if(/ii/.test(str)){
            str=str.replace( /ii/,function(){
                return that.getMinutes()>=10?that.getMinutes():("0"+that.getMinutes());
            });
        }
        if(/ss/.test(str)){
            str=str.replace( /ss/,function(){
                return that.getSeconds()>=10?that.getSeconds():("0"+that.getSeconds());
            });
        }
        if(/week/.test(str)){
            if(this.getDay()==0){
                str=str.replace(/week/,'星期日' );
            }
            if(this.getDay()==1){
                str=str.replace(/week/,'星期一' );
            }
            if(this.getDay()==2){
                str=str.replace(/week/,'星期二' );
            }
            if(this.getDay()==3){
                str=str.replace(/week/,'星期三' );
            }
            if(this.getDay()==4){
                str=str.replace(/week/,'星期四' );
            }
            if(this.getDay()==5){
                str=str.replace(/week/,'星期五' );
            }
            if(this.getDay()==6){
                str=str.replace(/week/,'星期六' );
            }
        }
        return str
    }

    如格式日期:new Date(utc時間).format("YYYY-MM-DD")

    回覆
    0
  • 取消回覆