由http://www.cnblogs.com/steinliber/p/5133386.html 中可得服务器会把environ和start_response发送给Flask的实例app,返回的是app中的wsgi_app

  1. def wsgi_app(self, environ, start_response):
  2.  
  3. ctx = self.request_context(environ)
  4. ctx.push()
  5. error = None
  6. try:
  7. try:
  8. response = self.full_dispatch_request()
  9. except Exception as e:
  10. error = e
  11. response = self.make_response(self.handle_exception(e))
  12. return response(environ, start_response)
  13. finally:
  14. if self.should_ignore_error(error):
  15. error = None
  16. ctx.auto_pop(error)

在这个函数中,首先创建了请求的上下文并将请求推入请求栈,之后调用full_dispatch_request来得到响应,也就是url对应的视图函数的返回值,full_dispatch_request的程序为

  1. def full_dispatch_request(self):
  2. """Dispatches the request and on top of that performs request
  3. pre and postprocessing as well as HTTP exception catching and
  4. error handling.
  5.  
  6. .. versionadded:: 0.7
  7. """
  8. self.try_trigger_before_first_request_functions()
  9. try:
  10. request_started.send(self)
  11. rv = self.preprocess_request()
  12. if rv is None:
  13. rv = self.dispatch_request()
  14. except Exception as e:
  15. rv = self.handle_user_exception(e)
  16. response = self.make_response(rv)
  17. response = self.process_response(response)
  18. request_finished.send(self, response=response)
  19. return response

try_trigger_before_request_function会触发在app中注册的在接受第一个请求前要调用的函数,request_started是信号机制通知请求开始处理,preprocess_request会调用app中注册的请求前函数,若函数的返回值不是None,response的内容就设为该返回值。否则就调用dispatch_request来找到对应的视图函数得到返回值

  1. def dispatch_request(self):
  2.  
  3. req = _request_ctx_stack.top.request
  4. if req.routing_exception is not None:
  5. self.raise_routing_exception(req)
  6. rule = req.url_rule
  7. # if we provide automatic options for this URL and the
  8. # request came with the OPTIONS method, reply automatically
  9. if getattr(rule, 'provide_automatic_options', False) \
  10. and req.method == 'OPTIONS':
  11. return self.make_default_options_response()
  12. # otherwise dispatch to the handler for that endpoint
  13. return self.view_functions[rule.endpoint](**req.view_args)

self.view_functions是通过路由模块产生的endpoint与视图函数相对应的字典。这个就能返回视图函数要返回的值

得到要响应的内容后通过make_response来将其转化为response的对象

  1. def make_response(self, rv):
  2. """Converts the return value from a view function to a real
  3. response object that is an instance of :attr:`response_class`.
  4.  
  5. The following types are allowed for `rv`:
  6.  
  7. .. tabularcolumns:: |p{3.5cm}|p{9.5cm}|
  8.  
  9. ======================= ===========================================
  10. :attr:`response_class` the object is returned unchanged
  11. :class:`str` a response object is created with the
  12. string as body
  13. :class:`unicode` a response object is created with the
  14. string encoded to utf-8 as body
  15. a WSGI function the function is called as WSGI application
  16. and buffered as response object
  17. :class:`tuple` A tuple in the form ``(response, status,
  18. headers)`` or ``(response, headers)``
  19. where `response` is any of the
  20. types defined here, `status` is a string
  21. or an integer and `headers` is a list or
  22. a dictionary with header values.
  23. ======================= ===========================================
  24.  
  25. :param rv: the return value from the view function
  26.  
  27. .. versionchanged:: 0.9
  28. Previously a tuple was interpreted as the arguments for the
  29. response object.
  30. """
  31. status_or_headers = headers = None
  32. if isinstance(rv, tuple):
  33. rv, status_or_headers, headers = rv + (None,) * (3 - len(rv))
  34.  
  35. if rv is None:
  36. raise ValueError('View function did not return a response')
  37.  
  38. if isinstance(status_or_headers, (dict, list)):
  39. headers, status_or_headers = status_or_headers, None
  40.  
  41. if not isinstance(rv, self.response_class):
  42. # When we create a response object directly, we let the constructor
  43. # set the headers and status. We do this because there can be
  44. # some extra logic involved when creating these objects with
  45. # specific values (like default content type selection).
  46. if isinstance(rv, (text_type, bytes, bytearray)):
  47. rv = self.response_class(rv, headers=headers,
  48. status=status_or_headers)
  49. headers = status_or_headers = None
  50. else:
  51. rv = self.response_class.force_type(rv, request.environ)
  52.  
  53. if status_or_headers is not None:
  54. if isinstance(status_or_headers, string_types):
  55. rv.status = status_or_headers
  56. else:
  57. rv.status_code = status_or_headers
  58. if headers:
  59. rv.headers.extend(headers)
  60.  
  61. return rv

make_response可以将字符串,函数,列表等转换成包含状态码以及响应头的response实例,得到response后会调用process_response,他会调用app中注册的after_request_funcs对response进行处理,返回处理过的response,然后full_dispatch_request会发信号通知请求处理结束,返回response,wsgi_app得到response后就返回response(environ,start_response)

  1. def __call__(self, environ, start_response):
  2. """Process this response as WSGI application.
  3.  
  4. :param environ: the WSGI environment.
  5. :param start_response: the response callable provided by the WSGI
  6. server.
  7. :return: an application iterator
  8. """
  9. app_iter, status, headers = self.get_wsgi_response(environ)
  10. start_response(status, headers)
  11. return app_iter

这是response调用时的结果,即返回了可迭代的内容,服务器经过处理将内容发到客户端

Flask对请求的处理的更多相关文章

  1. Flask关于请求表单的粗浅应用及理解+简单SQL语句温习

    1.请求表单 请求表单的知识点是flask数据请求中很小的一部分,首先要了解一下GET和POST请求:http://www.w3school.com.cn/tags/html_ref_httpmeth ...

  2. python 全栈开发,Day139(websocket原理,flask之请求上下文)

    昨日内容回顾 flask和django对比 flask和django本质是一样的,都是web框架. 但是django自带了一些组件,flask虽然自带的组件比较少,但是它有很多的第三方插件. 那么在什 ...

  3. Flask的请求与响应

    Flask的请求与响应 1 请求相关信息 request.method # 请求方法 request.args # get 请求的参数 request.form # post请求的参数 request ...

  4. Flask 的 请求扩展 与 中间件

    Flask 的 请求扩展 与 中间件 flask 可以通过 扩展(装饰器)来实现类似于django 中间件的功能 类似于django 的中间件, 在执行视图函数之前, 之后的执行某些功能 1 @app ...

  5. Flask框架 请求与响应 & 模板语法

    目录 Flask框架 请求与响应 & 模板语法 简单了解Flask框架 Flask 框架 与 Django 框架对比 简单使用Flask提供服务 Flask 中的 Response(响应) F ...

  6. jmeter测试 flask 接口请求

    jmeter测试 flask 接口请求 flask的代码如下: #!/usr/bin/env python # -*- coding: utf-8 -*- from flask import Flas ...

  7. Flask之 请求,应用 上下文源码解析

    什么是上下文? 每一段程序都有很多外部变量.只有像Add这种简单的函数才是没有外部变量的.一旦你的一段程序有了外部变量,这段程序就不完整,不能独立运行.你为了使他们运行,就要给所有的外部变量一个一个写 ...

  8. Flask的请求钩子与上下文简览

    请求钩子(Hook) 在客户端和服务器交互的过程中,有些准备工作或扫尾工作需要处理,比如:在请求开始时,建立数据库连接:在请求结束时,指定数据的交互格式.为了让>每个视图函数避免编写重复功能的代 ...

  9. Flask 的请求与响应

    flask的请求与响应 from flask import Flask,request,make_response,render_template,redirect app = Flask(__nam ...

  10. flask 之 请求钩子

    请求钩子 什么是请求钩子? 在客户端和服务器交互的过程中,有些准备工作或扫尾工作需要统一处理,为了让每个视图函数避免编写重复功能的代码,flask提供了统一的接口可以添加这些处理函数,即请求钩子. f ...

随机推荐

  1. gcc 的include path和lib path调整

    `gcc -print-prog-name=cc1plus` -v `g++ -print-prog-name=cc1plus` -v   ------------------------------ ...

  2. 关于cvScalar的那些事

    CvScalar 可存放在1-,2-,3-,4-TUPLE类型的捆绑数据的容器 该函数包含4个浮点成员,可以用来表示B(Blue),G(Green),R(Red),Alpha(表示图像的透明度) ty ...

  3. linux 之进程间通信-------------InterProcess Communication

    进程间通信至少可以通过传送打开文件来实现,不同的进程通过一个或多个文件来传递信息,事实上,在很多应用系统里,都使用了这种方法.但一般说来,进程间 通信(IPC:InterProcess Communi ...

  4. C#多线程及GDI(Day 23)

       又来到了总结知识的时间了,今天又学了一些新的知识,是多线程和GDI的一些运用. 理论: 在学习多线程之前,首先要了解一下什么是进程? 进程:(关键字Process)进程是一个具有一定独立功能的程 ...

  5. .NET中的IO操作之文件流(一)

    读操作 //1.创建文件流 FileStream fsRead =new FileStream("1.txt",FileMode.Open); //2.创建缓冲区,正常情况下,是不 ...

  6. 第一节 生命周期和Zend引擎

    一切的开始: SAPI接口 SAPI(Server Application Programming Interface)指的是PHP具体应用的编程接口, 就像PC一样,无论安装哪些操作系统,只要满足了 ...

  7. parquet code demo

    http://www.programcreek.com/java-api-examples/index.php?source_dir=hiped2-master/src/main/java/hip/c ...

  8. 创建理想的SEQUENCE和自增长的trigger

    SEQUENCE CREATE SEQUENCE TEST_SEQ START 1 --从1开始,第一个一定是NEXTVAL,因为第一个CURRVAL不好使,返回值会是1,第一个NEXTVAL相当于从 ...

  9. 自己动手写List集合(C#)

    平时经常使用微软的List集合,觉得理所应当,这阵子突然意识到学编程学这么久,总不能只生存在某个平台某种语言下面.我觉得要跳出这个框,而数据结构是经常用到的,所以呢,作为一个有志向的程序员应该学会它. ...

  10. PICC国际标准ISO14443下载

    ISO 14443:第一部分规定了PICC的物理特性.接近卡(PICC)国际标准ISO14443-1点击下载 ISO 14443:第二部分规定了PICC的射频功率和信号接口. 接近卡(PICC)国际标 ...