0

我刚从 flaks_restplus 切换到 flask_restx。我开始收到元帅错误。

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

我在我的模态中定义了这个字段,以及我传入的字典。

"my_field": fields.Raw

{... 'my_field': None}

我怎样才能允许 None 用于该领域?

4

1 回答 1

0

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

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

这不直观...

于 2021-06-03T22:04:20.460 回答