如何使用 mongo 引擎从包含特定字段的集合中获取文档

How can I fetch documents from a collection which contains a certain field using mongo engine

我想从一个集合中获取文档,即包含特定字段(即名称)的公司。 我尝试了以下查询,但它不起作用。有人可以帮我更正这个查询,或者建议一个不同的查询来获得我需要的吗?谢谢

Company.objects.get(name__isnull=False)

您可以使用exists运算符

Python.objects(name__exists=True)