Flask Restful Reqparse required = True错误处理

时间:2018-01-04 07:33:20

标签: python python-2.7 flask flask-restful

我使用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响应而不是这个。我怎么能这样做?

0 个答案:

没有答案