我正在寻找将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并创建自己的字段,谢谢。
答案 0 :(得分:2)
仅供参考 - 我直接使用fields.Raw,这被转换为object
in pyagger aka dictionary
in py。