Merge pull request #1385 from lixxu/master

update doc for latest blueprint code
This commit is contained in:
Stephen Sadowski 2018-11-05 07:40:12 -06:00 committed by GitHub
commit f13f451084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ by that blueprint. In this example, the registered routes in the `app.router`
will look like: will look like:
```python ```python
[Route(handler=<function bp_root at 0x7f908382f9d8>, methods=None, pattern=re.compile('^/$'), parameters=[])] [Route(handler=<function bp_root at 0x7f908382f9d8>, methods=frozenset({'GET'}), pattern=re.compile('^/$'), parameters=[], name='my_blueprint.bp_root', uri='/')]
``` ```
## Blueprint groups and nesting ## Blueprint groups and nesting
@ -87,7 +87,7 @@ from sanic import Blueprint
from .static import static from .static import static
from .authors import authors from .authors import authors
content = Blueprint.group(assets, authors, url_prefix='/content') content = Blueprint.group(static, authors, url_prefix='/content')
``` ```
```python ```python
# api/info.py # api/info.py
@ -254,5 +254,3 @@ async def root(request):
async def post_handler(request, post_id): async def post_handler(request, post_id):
return text('Post {} in Blueprint V1'.format(post_id)) return text('Post {} in Blueprint V1'.format(post_id))
``` ```