我刚从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)
这不是直观的。。。