我有一个MongDB集合,其中我的文档中的日期存储为这样的字符串:
"data": {
"type": "MatchData",
"matchId": "5b34f2d527f0d904f8ee4bbf",
"groupId": "5b2a032ffc37de04f30dc412",
"leaderboardId": "5b2a0387fc37de04f30e149d",
"matchTitle": "",
"date": "20180628144304"
}
如您所见,日期保存为字符串,但我希望能够找到日期早于当前日期的所有记录:
var currDate = 20180928000000
dbCollection('matches').find( { "groupId": groupId, "$lt": {"date": currDate} } );
当前示例不起作用,因为currDate是一个整数,而文档中的日期是一个字符串!如何在查询中使用parseInt或还有另一种方法?
希望获得帮助并提前致谢:-)
最佳答案
您可以将输入参数currDate
转换为字符串
var currDate = "20180928000000"
dbCollection('matches').find({ "groupId": groupId, "$lt": { "date": currDate } })
或如果您使用的是4.0
那么您可以使用
$toInt
聚合运算符dbCollection('matches').find({
"groupId": groupId,
"$expr": { "$lt": [{ "$toInt": "$date" }, currDate]}
})