我这里有两个时间数据。一个来自mongodb数据库,我用objectId查找。另一个是当前时间。我把两个放在变量..现在我想从当前时间减去数据库的时间值..这里是我试过的一些代码。
var mongo = require('mongodb');
var ObjectId = require('mongodb').ObjectID;
var lastUpdate = new Date();
var id = ObjectId("5a5ee7588a6a102398be8ada");
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/blue";
MongoClient.connect(url, function (err, db) {
if (err)
throw err;
var dbase = db.db("blue");
dbase.collection("screams").findOne({ email: "Adnan@gmail.com", _id: id },
function (err, searchtype) {
if (err)
throw err;
var resdate = searchtype.createdAt;
console.log(resdate);
dbase.collection("screams").find(function () {
return (this.lastUpdate.valueOf() - this.resdate.valueOf())
> (1000 * 60 * 60 * 24);
})
db.close();
});
});
答案 0 :(得分:0)
MongoDb在其聚合框架中有$subtract运算符可以帮助您实现此目的。
尝试
dbase.collection('screams').aggregate([
{$match:{email:"Adnan@gmail.com", _id: id }},
{$project:{_id:1, email:1, createdAt:1,
datediff:{$subtract:[new Date(), '$createdAt']}}
}
], function(err, result) {
//Do what you need to do here.
})
日期以毫秒为单位,您可能需要在那里进行一些转换以满足您的需要。
答案 1 :(得分:0)
var d1 = new Date(); , // put ur any date value in the given variable
d2 = new Date();
var diff = Math.abs(d2 - d1);
console.log(diff);