微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

烧瓶restx枚举模型

如何解决烧瓶restx枚举模型

如何在烧瓶restx 中创建一个带其他属性的字符串字段的Enum api模型,以便在swagger.yml中生成以下描述?

deFinitions:
    Colors:
      type: string
      enum: [black,white,red,green,blue]

enter image description here

也许一些技巧会有所帮助? 因为现在看来您可以创建仅具有属性的api模型

解决方法

哦,所以我找到了解决问题的方法)

自我回答,大声笑

您可以通过json模式描述定义api模型: https://flask-restx.readthedocs.io/en/latest/marshalling.html#define-model-using-json-schema

colors_api_model = api.schema_model('Colors',{
    'enum':
        ['black','white','red','green','blue'],'type': 'string'
})

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。