我需要在paidUntilDate
属性中查询比今天晚 x 天的日期,其中 x 在notificationDaysBefore
同一文档的属性中。我正在使用dayjs库来查询日期。
我发现我可以使用 比较同一文档中的值$expr
,但我不知道是否可以将其中一个值用作 dayjs.add()
函数的参数并将其与另一个值进行比较。
目前我有这个查询,它获取paidUntilDate
从今天起 7-8 天之间的日期。
const today = dayjs();
await Bed.find({
paidUntilDate: {
$lte: today.add(8, 'days'),
$gte: today.add(7, 'days')
}
})
我只需要用属性7
中的值和值 +1 替换 。notificationDaysBefore
8
7
任何帮助表示赞赏。谢谢!
编辑:我认为我最好做这样的事情:
await Bed.find({
}).where(today.diff('paidUntilDate')).in('notificationDaysBefore')
或者
await Bed.find({
notificationDaysBefore: today.diff('$paidUntilDate', 'day'),
})
因为notificationDaysBefore
包含一个数字数组,但我仍然没有弄清楚正确的语法。