Javascript将秒转换为日期对象

时间:2011-01-06 04:30:16

标签: javascript datetime

如何在javascript中将秒转换为日期时间对象。

示例:

1.3308313703571

1.6324722385401

这是从一系列点开始的。我理解1.23323多秒,但我不能改变这个值,从api中拉出来。

6 个答案:

答案 0 :(得分:49)

您可以尝试这样:

function toDateTime(secs) {
    var t = new Date(1970, 0, 1); // Epoch
    t.setSeconds(secs);
    return t;
}

epoch date上的信息。

答案 1 :(得分:6)

您可以将unix时间戳毫秒作为参数传递给Date构造函数:

var secs = 30;
new Date(secs * 1000);

输出:

Date 1970-01-01T00:00:30.000Z

答案 2 :(得分:3)

@UVM的答案很有帮助,但是如果您要处理时区(即UTC与本地时间),则它会有些不完整。对于时区,请使用Date.UTC和Date.setUTCSeconds从UTC开始,以获取真实的UTC日期和时间。

function toDateTime(secs) {
    var t = new Date(Date.UTC(1970, 0, 1)); // Epoch
    t.setUTCSeconds(secs);
    return t;
}

然后,您可以使用Moment之类的库将其转换/格式化为本地时区。

答案 3 :(得分:1)

你的示例值有一个十进制..看起来你正试图将1.something秒转换为日期..

同时检查此示例here有关正确的秒数转换的信息。您可以查看其js来源。

答案 4 :(得分:1)

这个问题似乎已经得到了回答,但对于那些试图做类似于ruby的Time.at()方法的人来说,这可能会有所帮助。

function formatDateTime(input){
       var epoch = new Date(0);
       epoch.setSeconds(parseInt(input));
       var date = epoch.toISOString();
       date = date.replace('T', ' ');
       return date.split('.')[0].split(' ')[0] + ' ' + epoch.toLocaleTimeString().split(' ')[0];
};

答案 5 :(得分:-5)

/**
    DateTime 
    -------
    Author:     Jamal BOUIZEM
    Date:       20/02/2015
    Version:    1.0.0
*/

var DateTime = (function(){
    return {
        instance: function(spec){
            var that = {
                h: spec.h || 0,
                m: spec.m || 0,
                s: spec.s || 0
            };

            var d = new Date();
            var str = "";

            function __init__(h, m, s)
            {
                that.h = h;
                that.m = m;
                that.s = s;

                d.setHours(that.h);
                d.setMinutes(that.m);
                d.setSeconds(that.s);
            };

            that.get = function(){ 
                d.setHours(that.h);
                d.setMinutes(that.m);
                d.setSeconds(that.s);
                return d; 
            };

            that.set = function(h, m, s){
                __init__(h, m, s);
            };

            that.convertSecs = function(){
                return (that.h * 3600) + (that.m * 60) + that.s;
            };

            that.secsToDate = function(seconds){
                var ts = seconds % 60;
                var tm = (seconds / 60) % 60;
                var th = (seconds / 3600) % 60;
                return DateTime.instance({ h: parseInt(th), m: parseInt(tm), s: parseInt(ts) });
            };

            that.add = function(d){
                return that.secsToDate(that.convertSecs() + d.convertSecs());
            };

            that.subtract = function(d){
                return that.secsToDate(that.convertSecs() - d.convertSecs());
            };

            __init__(that.h, that.m, that.s);
            return that;
        }
    }
})();