在我的下面代码中,第2行出现语法错误
我只使用一个整数变量today
async def get_users(self):
today = 5
return self.col.find({'prexdate': {$gte: int(today)}}) #in this line getting a syntax error
您的字段是'prexdate':
试试这个prexdate:
这里还有一个链接https://www.mongodb.com/docs/manual/reference/method/db.collection.find/