定义WSGI接口
def application(environ, start_response):start_response('200 OK', [('Content-Type','text/html')])return'Hello World!'
注释
200OK是 状态码
函数的两个参数:状态码200OK、头信息header ---传列表
[('Content-Type','text/html')]元祖 一个表示一行信息 表示一个键值对
可以返回多个元祖
Content-Type 元祖
text/html 键值对
environ:一个包含所有HTTP请求信息的dict对象; 字典
start_response:一个发送HTTP响应的函数。 函数