我正在寻找将restplus Api.model表示为dictionary
的方法,这是我在调用后数据(如
{"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进行子类化并创建自己的字段,谢谢。
最佳答案
仅供参考-我直接使用fields.Raw,这在py的swagger akaobject
中转换为dictionary
。
关于python - flask restplus型号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49392527/