查询:
query = mycol.aggregate([
{
"$addFields": {
"Date": {
"$dateFromString": {
"dateString": "$date",
"format": "%d/%m/%Y"
}
}
}
},
{
"$match": {
"Date": { "$gte": ISODate("2016-01-01T00:00:00Z"), "$lt": ISODate("2019-01-01T00:00:00Z") }
}
},
{
"$group" : {
"_id" : "$Employee", "total": { "$push" : "$salary" }
}
}
])
错误:
NameError at /api/category/top-needstates/
name 'ISODate' is not defined
在这里,我正在使用pymongo将mongodb与python结合使用。 但是我遇到了错误。
有什么办法可以解决?
我需要导入ISODate吗?
请看看