Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮忙,卡了几个小时,我如何删除直接在 pymodm 中与查询匹配的文档。
例如:
user = User.objects.raw({'name':'Moses'})
如何从我的数据库集合中删除此用户?
您可以使用 delete() 方法从 MongoDB 中删除文档,尝试下面的代码,这对我来说很好。
user = User.objects.raw({'name':'Moses'}) user.delete()