请求解析

Flask-RESTful 的请求解析接口是模仿 argparse 接口。它设计成提供简单并且统一的访问 Flask 中 flask.request 对象里的任何变量的入口。

基本参数

这里是请求解析一个简单的例子。它寻找在 flask.Request.values 字典里的两个参数。一个类型为 int,另一个的类型是 str

  1. from flask.ext.restful import reqparse
  2. parser = reqparse.RequestParser()
  3. parser.add_argument('rate', type=int, help='Rate cannot be converted')
  4. parser.add_argument('name', type=str)
  5. args = parser.parse_args()

如果你指定了 help 参数的值,在解析的时候当类型错误被触发的时候,它将会被作为错误信息给呈现出来。如果你没有指定 help 信息的话,默认行为是返回类型错误本身的信息。

默认下,arguments 不是 必须的。另外,在请求中提供的参数不属于 RequestParser 的一部分的话将会被忽略。

另请注意:在请求解析中声明的参数如果没有在请求本身设置的话将默认为 None

必需的参数

要求一个值传递的参数,只需要添加 required=True 来调用 add_argument()

  1. parser.add_argument('name', type=str, required=True,
  2. help="Name cannot be blank!")

多个值&列表

如果你要接受一个键有多个值的话,你可以传入 action='append'

  1. parser.add_argument('name', type=str, action='append')

这将让你做出这样的查询

  1. curl http://api.example.com -d "Name=bob" -d "Name=sue" -d "Name=joe"

你的参数将会像这样

  1. args = parser.parse_args()
  2. args['name'] ## ['bob', 'sue', 'joe']

其它目标(Destinations)

如果由于某种原因,你想要以不同的名称存储你的参数一旦它被解析的时候,你可以使用 dest kwarg。

  1. parser.add_argument('name', type=str, dest='public_name')
  2. args = parser.parse_args()
  3. args['public_name']

参数位置

默认下,RequestParser 试着从 flask.Request.values,以及 flask.Request.json 解析值。

add_argument() 中使用 location 参数可以指定解析参数的位置。flask.Request 中任何变量都能被使用。例如:

  1. ## Look only in the POST body
  2. parser.add_argument('name', type=int, location='form')
  3. ## Look only in the querystring
  4. parser.add_argument('PageSize', type=int, location='args')
  5. ## From the request headers
  6. parser.add_argument('User-Agent', type=str, location='headers')
  7. ## From http cookies
  8. parser.add_argument('session_id', type=str, location='cookies')
  9. ## From file uploads
  10. parser.add_argument('picture', type=werkzeug.datastructures.FileStorage, location='files')

多个位置

通过传入一个列表到 location 中可以指定 多个 参数位置:

  1. parser.add_argument('text', location=['headers', 'values'])

列表中最后一个优先出现在结果集中。(例如:location=[‘headers’, ‘values’],解析后 ‘values’ 的结果会在 ‘headers’ 前面)

继承解析

往往你会为你编写的每个资源编写不同的解析器。这样做的问题就是如果解析器具有共同的参数。不是重写,你可以编写一个包含所有共享参数的父解析器接着使用 copy() 扩充它。你也可以使用 replace_argument() 覆盖父级的任何参数,或者使用 remove_argument() 完全删除参数。 例如:

  1. from flask.ext.restful import RequestParser
  2. parser = RequestParser()
  3. parser.add_argument('foo', type=int)
  4. parser_copy = parser.copy()
  5. parser_copy.add_argument('bar', type=int)
  6. ## parser_copy has both 'foo' and 'bar'
  7. parser_copy.replace_argument('foo', type=str, required=True, location='json')
  8. ## 'foo' is now a required str located in json, not an int as defined
  9. ## by original parser
  10. parser_copy.remove_argument('foo')
  11. ## parser_copy no longer has 'foo' argument