Added middlewares to quickstart. This fixes #88
This commit is contained in:
parent
91e9632a37
commit
a3a72e2d8d
3 changed files with 22 additions and 2 deletions
10
flask/app.py
10
flask/app.py
|
|
@ -724,6 +724,16 @@ class Flask(_PackageBoundObject):
|
|||
return self.response_class(*rv)
|
||||
return self.response_class.force_type(rv, request.environ)
|
||||
|
||||
def create_url_adapter(self, request):
|
||||
"""Creates a URL adapter for the given request. The URL adapter
|
||||
is created at a point where the request context is not yet set up
|
||||
so the request is passed explicitly.
|
||||
|
||||
.. versionadded:: 0.6
|
||||
"""
|
||||
return self.url_map.bind_to_environ(request.environ,
|
||||
server_name=self.config['SERVER_NAME'])
|
||||
|
||||
def preprocess_request(self):
|
||||
"""Called before the actual request dispatching and will
|
||||
call every as :meth:`before_request` decorated function.
|
||||
|
|
|
|||
|
|
@ -28,9 +28,8 @@ class _RequestContext(object):
|
|||
|
||||
def __init__(self, app, environ):
|
||||
self.app = app
|
||||
self.url_adapter = app.url_map.bind_to_environ(environ,
|
||||
server_name=app.config['SERVER_NAME'])
|
||||
self.request = app.request_class(environ)
|
||||
self.url_adapter = app.create_url_adapter(self.request)
|
||||
self.session = app.open_session(self.request)
|
||||
if self.session is None:
|
||||
self.session = _NullSession()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue