我正在寻找将restplus Api.model表示为a的方法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并制作我自己的字段,谢谢。