比如有这么一个字典:
{
'data__key_hello': "world",
'data__key_bar': "foo",
'data__a': "b",
'b': 'c',
}
转换之后变成
{
'data': {
'key': {
'hello': 'world',
'bar': 'foo'
},
'a': 'b',
},
'b': 'c'
}
就是以下划线进行一个分割
雷雷
凑合着用吧