flask_restx字段.Raw不允许None



我刚从flaks_restplus切换到flask_restx。我开始收到封送错误。

jsonschema.exceptions.ValidationError: None is not of type 'object'

我在模态中定义了这个字段,并输入了dict

"my_field": fields.Raw

{... 'my_field': None}

如何允许字段为None?

我想我找到了答案。我定义的字段被封装在field.Nested()

我必须输入可选参数field.Nested(myModel, skip_none=True)

这不是直观的。。。

相关内容

  • 没有找到相关文章

最新更新