var require = require('moment');
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
today = yyyy+'/'+mm+'/'+dd;
console.log(today);
videofiles.find({date:{$lte:'today'}}
上面提到的是我的代码..以下是我的Db值...我不知道如何过滤mongodb的最近10天记录。
我已经提到过滤日期的值小于或等于今天,但我真的需要过滤最近10天的记录,我是mongo db的新手,node.js videofiles
指的是我的集合的名称mongodb的。
"date": "2017/03/10",
"is_deleted": 0,
"filemimeType": "audio/mp3",
"emotionCount": 0,
"originalname": "1489042167918-1489040146195-SampleAudio_0.5mb (1).mp3",
"updatedAt": "2017-03-10T05:54:34.032Z",
"isUserLiked": 0,
"country": "India",
"fileuploadFilename": "1489125273974-1489042167918-1489040146195-SampleAudio_0.5mb (1).mp3",
"_id": "58c23f9a180ac54d758b5fc0",
"likeCount": 0,
"viewed": 0
答案 0 :(得分:1)
你可以在过去10天的记录中这样做,
videofiles.find(
{
"date":
{
$gte: (new Date((new Date()).getTime() - (10 * 24 * 60 * 60 * 1000)))
}
}
).sort({ "date": -1 })
答案 1 :(得分:1)
添加此代码:
today.setDate(today.getDate() - 10);
这一行之后:
var today = new Date();
然后替换你的代码行:
videofiles.find({date:{$lte:'today'}}
这一行:
db.videofiles.find({"date":{"$gte":'today'}})
答案 2 :(得分:0)
带有 moment 的单行解决方案:
const moment = require("moment")
const docs = await Doc.find({
createdAt: {
$gte: moment().add(-10, "days"),
}
})
答案 3 :(得分:0)
使用 find()
方法和 createAt
属性查找过去 10 天的记录,
const moment = require("moment")
const docs = await Doc.find({
createdAt: {
$gte: moment().add(-10, "days"),
}
})