文章预览
(点击 上方公众号 ,可快速关注) 来源:Cizixs cizixs.com/2014/11/08/understand-wsgi 如有好文章投稿,请点击 → 这里了解详情 基础知识 Python 知识 iterator 和 generator 函数的高级用法:嵌套函数,作为参数传递等等 了解 decorator 会对理解 wsgi 有很大的帮助 python 的 callable 概念 classmethod 和 staticmethod 的概念 web 编程的基础 HTTP 基础 对于 web 应用程序来说,最基本的概念就是客户端发送请求(request),收到服务器端的响应(response)。 下面是简单的 HTTP 请求: GET / Index . html HTTP / 1.1 \ r \ n Connection : Keep - Alive \ r \ n Accept : */* \ r \ n User - Agent : Sample Application \ r \ n Host : www . microsoft . com \ r \ n \ r \ n 内容包括了 method、 url、 protocol version 以及头部的信息。而 HTTP 响应(不包
………………………………