我想将 json 与图像字节一起发布。我正在使用 api.parser 来指定预期的参数:
upload_parser = api.parser()
a=True
upload_parser.add_argument('image',
location='files',
type=FileStorage,
required=True)
# json string
upload_parser.add_argument('params', location='form', type='string')
我如何验证 json 字符串api.model
?