我有一个我要查询的地图字段。类似的东西:
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)
无济于事。我如何查询,以便我只返回在配置文件字段中具有特定键的用户对象?基本上,我想根据设备ID查询包含某个DeviceProfile对象的用户文档。
答案 0 :(得分:3)
将此问题留给遇到此问题的其他人。
要通过地图字段的键检索Mongoengine文档,请使用exists
运算符。例如,可以构造查询,然后将其传递给对象方法:
qry = {
'profiles__{}__exists'.format(key): True,
'_cls': 'User'
}
User.object(**qry)
将exists
运算符视为"常规"查询不起作用,因为任何非null,非零值都将被视为True
,匹配将返回MapField中存在某些内容的任何文档。例如:
Users.object(profiles__exists=key)
将返回所有具有非空MapField的对象。