我使用flask_restful.reqparse来解析参数。现在我想要“名字”参数必须要求。所以我写了这个:
from flask_restful import reqparse
parser = reqparse.RequestParser()
name= parser.add_argument("name", required=True, help="name is missing")
现在我想处理请求中没有名称的错误。我怎么能这样做?
目前,我正在使用cURL
发送此请求curl -X POST \
http://localhost:5000/user \
-H 'cache-control: no-cache' \
-H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW'
它显示400 Bad Request,我想发送一个json响应而不是这个。我怎么能这样做?