Mongoengine: Query a MapField



我有一个我想查询的地图字段。类似:

class User(mongoengine.Document):
    email = mongoengine.EmailField(required=False, unique=False)
    username = mongoengine.StringField(max_length=30, min_length=6, required=True, unique=True)
    password = mongoengine.StringField(max_length=500, min_length=6, required=True)
    profiles = mongoengine.MapField(mongoengine.EmbeddedDocumentField(DeviceProfile))

so在现场, profiles ,我像这样存储对象: device_id:deviceprofile objoct

我尝试了:User.objects(profiles__device_id=device_id)无济于事。如何查询以使我只返回配置文件字段中具有特定键的用户对象?基本上,我想查询基于其设备ID的某个设备Profile对象的用户文档。

将其留在此处供任何遇到此问题的人。

为了通过地图字段的密钥检索MongoEngine文档,请使用exists操作员。例如,可以构造查询,然后传递到对象方法:

qry = {
    'profiles__{}__exists'.format(key): True,
    '_cls': 'User'
}
User.object(**qry)

exists运算符视为"常规"查询不起作用,因为任何非null,非零值都将被视为True,并且该匹配将返回MAPFIELD中有某些内容的任何文档。例如:

Users.object(profiles__exists=key)

将返回所有具有非空Mapfield的对象。

相关内容

  • 没有找到相关文章

最新更新