Flask restplus模型

时间:2018-03-20 19:19:27

标签: python flask flask-restplus

我正在寻找将restplus模式表示为dictionary的方式,这是我在后调用数据上收到的api,例如

{"name": "the_name",
 "data": {"data_specific_key", "value", "key2": "value2" .... } 
}
// The data is dynamic, no way to know what fields will have. 

不幸的是,在restplus Api中我只能表示一个ListFields。

我正在查看https://flask-restplus.readthedocs.io/en/stable/marshalling.html#nested-field但不确定会有所帮助,也许我需要继承https://flask-restplus.readthedocs.io/en/stable/api.html#flask_restplus.fields.Raw并创建自己的字段,谢谢。

1 个答案:

答案 0 :(得分:2)

仅供参考 - 我直接使用fields.Raw,这被转换为object in pyagger aka dictionary in py。