mongodb插入时间

Posted 开始战斗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb插入时间相关的知识,希望对你有一定的参考价值。

插入时间:

db.test.insert({time:new Date()})

给mongodb插入日期格式的数据时发现,日期时间相差8个小时,原来存储在mongodb中的时间是标准时间UTC +0:00,而中国的时区是+8.00 。

取出时正确

db.test.find()[0].time.getHours()

因此在插入的时候需要对时间进行处理:

db.test.insert({"Time":new Date(new Date().getFullYear()+"-"+(new Date().getMonth()+1)+"-"+new Date().getDate()+ " "+new Date().toLocaleTimeString())})

db.test.insert({‘time‘:ISODate("2012-11-02 07:58:51")})

db.user.uinfo.insert({‘ltime‘:ISODate("2012-11-02 07:58:51")})

用自定义函数:

function insertDate(time){
    time.setHours(time.getHours()-8);
    return time;
}
insertDate(new Date(2017,9,9,9,63,72))

function getFormatDate(time){
    year = time.getFullYear();
    mon = time.getMonth()+1;
    date = time.getDate();
    hour = time.getHours();
    min = time.getMinutes();
    sec = time.getSeconds();
    newtime = year+‘-‘+mon+‘-‘+date+‘ ‘+hour+‘:‘+min+‘:‘+sec;
    return newtime;
}

 

以上是关于mongodb插入时间的主要内容,如果未能解决你的问题,请参考以下文章

代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?

将代码片段插入数据库并在 textarea 中以相同方式显示

如何在 mongodb 中自动插入记录(nodejs、express、mongoose)

从R在mongodb中插入json日期对象

将数据从 csv 插入到 MongoDb

无法使用 Node.js 和 Mongoose 插入 MongoDB