我使用MongjDB的nodejs获取数据。我在MongoDB中有对象。现在我要使用日期明确获取数据,我的日期时间字段是时间戳。我希望使用MongoDB从开始日期到结束日期获取数据。 必须注意我想在我预期的操作中打印日期。 在这里我这是我的对象=>
{
"_id" : ObjectId("595be16ee04602135828e25c"),
"Action" : "Comment",
"datetime" : 1507099928000 // 4th oct 2017 convert date just for info here write
},
{
"_id" : ObjectId("595be16ee04602135828e25c"),
"Action" : "Comment",
"datetime" : 1508139441716 // 16th oct 2017 convert date just for info here write
}
{
"_id" : ObjectId("595be16ee04602135828e25c"),
"Action" : "Comment",
"datetime" : 1508139441716 // 16th oct 2017 convert date just for info here write
}
{
"_id" : ObjectId("595be16ee04602135828e25c"),
"Action" : "Like",
"datetime" : 1508139441716 // 16th oct 2017 convert date just for info here write
},
这是我的查询=>
InstaAc.aggregate([
{
"$match": {
"_id": ObjectId("595be16ee04602135828e25c"),
"datetime": {
"$lte": 1508141028150, "$gte": 1507622568000
}
},
"Action": {
$in: ["Comment", "Like"]
}
},
{
"$addFields": {
"datetime": {
"$add": [new Date(0), "$datetime"]
}
}
},
{
"$group": {
"_id": {
"$dateToString": {
"format": "%d-%m-%Y",
"date": "datetime"
}
},
"commentcount": { $sum: { $cond: [{ $eq: ["Action", "Comment"] }, 1, 0] } },
"likecount": { $sum: { $cond: [{ $eq: ["Action", "Like"] }, 1, 0] } },
}
},
{
"$sort": {
"_id": 1
}
}
]).exec(function (err, data) {
if (err) {
console.log(err);
}
else {
console.log(data);
}
})
这是我上面的查询,我收到的错误是“日期未定义” 拜托,任何人,知道如何解决这个问题,请帮助我。
我的例外情况o / p =>
{ _id: '16-10-2017', commentcount: 2 ,likecount:1},
答案 0 :(得分:0)
在运行查询之前,请创建一个日期对象并使用该对象而不是新的Date(0)。
var myDate = new Date(0);
并在您的查询中
"$addFields": {
"datetime": {
"$add": [myDate, "$datetime"]
}