Python Eve - 查询嵌入式数据关系
Python Eve - Query Embedded Data Relation
我定义了以下资源:
item = {
'wrapper': {
'type': 'dict',
'schema': {
'element': {
'type': 'objectid',
'data_relation': {
'resource': 'code',
'field': '_id',
'embeddable': True,
},
},
},
},
}
当我尝试使用 objectid 进行查询时,我得到的是空列表。
http://127.0.0.1:5000/item?where={"wrapper.element":"5834987589b0dc353b72c27d"}
5834987589b0dc353b72c27d 是元素的有效 _id。
如果我将数据关系移出嵌入文档,我可以按预期查询它
有没有办法用嵌入的数据关系来做到这一点?
我刚刚使用 eve==0.7.1
进行了测试,如您所说,使用 ?where={"wrapper.element" : "<your_objectid>"}
进行过滤后效果如预期。
我遇到了一个问题,其中 _id
被存储为字符串而不是 ObjectId()
,这破坏了查询
我定义了以下资源:
item = {
'wrapper': {
'type': 'dict',
'schema': {
'element': {
'type': 'objectid',
'data_relation': {
'resource': 'code',
'field': '_id',
'embeddable': True,
},
},
},
},
}
当我尝试使用 objectid 进行查询时,我得到的是空列表。
http://127.0.0.1:5000/item?where={"wrapper.element":"5834987589b0dc353b72c27d"}
5834987589b0dc353b72c27d 是元素的有效 _id。
如果我将数据关系移出嵌入文档,我可以按预期查询它
有没有办法用嵌入的数据关系来做到这一点?
我刚刚使用 eve==0.7.1
进行了测试,如您所说,使用 ?where={"wrapper.element" : "<your_objectid>"}
进行过滤后效果如预期。
我遇到了一个问题,其中 _id
被存储为字符串而不是 ObjectId()
,这破坏了查询