我有json
{
"message": {
"foo": "foo",
"bar": "bar"
}
}
和解析器:
parser = reqparse.RequestParser(bundle_errors=True)
parser.add_argument('foo', type=str, required=True)
parser.add_argument('bar', type=str, required=True)
args = parser.parse_args()
错误是: {'foo': 'Missing required parameter in the JSON body or post body or the query string', 'bar': 'Missing required parameter in the JSON body or post body or the query string'}