我的域配置中有以下架构:
DOMAIN = {
'adv': {
'schema': {
'_id': {'type': 'string'},
'matchups': {
'type': 'dict',
'schema': {
'name': {'type': 'string'},
'value': {'type': 'double'}
},
},
},
},
}
尽管按_id
排序有效:
http://127.0.0.1:5000/adv/?sort=[("_id",1)]
按字典值或名称排序不起作用:
http://127.0.0.1:5000/adv/?sort=[("matchups.value",1)]