我想使用字段值作为变量在mongodb数据库中查找文档

zyfwsgd6  于 2023-01-20  发布在  Go
关注(0)|答案(1)|浏览(123)

在我下面的代码中,在第行中出现语法错误:2
我只使用了一个整型变量today

async def get_users(self):
     today = 5
     return self.col.find({'prexdate': {$gte: int(today)}}) #in this line getting a syntax error

相关问题