编程语言
首页 > 编程语言> > python-Mongoengine:查询MapField

python-Mongoengine:查询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))

因此,在配置文件字段中,我将对象存储为:device_id:DeviceProfile对象.

我试过:User.objects(profiles__device_id = device_id)无济于事.如何查询,以便只返回在配置文件字段中具有特定键的User对象?基本上,我想根据其设备ID查询包含某个DeviceProfile对象的User文档.

解决方法:

将此留给遇到此问题的其他任何人.

为了通过map字段的键检索Mongoengine文档,请使用exist操作符.例如,可以构造查询,然后将其传递给对象方法:

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

User.object(**qry)

将存在运算符视为“常规”查询是行不通的,因为任何非null,非零值都将被视为True,并且匹配项将返回MapField中包含某些内容的所有Documents.例如:

Users.object(profiles__exists=key)

将返回所有具有非空MapField的对象.

标签:odm,python-3-x,mongodb,python,mongoengine
来源: https://codeday.me/bug/20191111/2020181.html