Merge pull request #899 from hatarist/patch-2

Add a line on headers in the "Request Data" docs
This commit is contained in:
Raphael Deem 2017-08-20 23:51:07 -07:00 committed by GitHub
commit db9924a399

View File

@ -71,6 +71,8 @@ The following variables are accessible as properties on `Request` objects:
return text("You are trying to create a user with the following POST: %s" % request.body)
```
- `headers` (dict) - A case-insensitive dictionary that contains the request headers.
- `ip` (str) - IP address of the requester.
- `app` - a reference to the Sanic application object that is handling this request. This is useful when inside blueprints or other handlers in modules that do not have access to the global `app` object.