在flask_restplus python3中使用fields.Wildcard()的问题

时间:2019-09-17 18:59:46

标签: python flask swagger-ui python-3.7 flask-restplus

我正在尝试为以下结构构建一瓶restplus模型。

"data": {
            "file1": 79,
            "file2": 72
        }

file1和file2是文件名,每次我运行该应用程序时它都会更改。我能想到的最好的解决方案是使用通配符字段。

wild = fields.Wildcard(fields.String)
wildcard_fields = {'*': wild}

我跑步时得到AttributeError: module 'flask_restplus.fields' has no attribute 'Wildcard'

请帮助我解决此问题,或者也欢迎您使用其他解决方案。

谢谢!

1 个答案:

答案 0 :(得分:0)

您是否尝试过更新库房?通配符是最新的,所以可能是问题所在。