WSGI : web server gateway interface
只是用来接收浏览器的html请求,将python响应body的以html文档发送给浏览器
//hello.py
def application(environ, start_response):
start_response('200 0k', [("Content-Type", "text/html")])
body = "<h1>it's me: %s</h1>" % (environ["PATH_INFO"][1:])
return [body.encode('utf-8')]
//server.py
from wsgiref.simple_server import make_server
from hello import application
httpd = make_server('', 8999, application)
print "Server start on port 8999....."
httpd.serve_forever()
//运行代码
python server.py
Server start on port 8999.....
127.0.0.1 - - [26/Aug/2021 17:50:58] "GET /haode HTTP/1.1" 200 23
127.0.0.1 - - [26/Aug/2021 17:50:58] "GET /favicon.ico HTTP/1.1" 200 29
浏览器访问:
http://127.0.0.1:8999/haoren

本文详细解读了Web Server Gateway Interface (WSGI)的概念,如何用Python接收浏览器请求并返回HTML响应,通过hello.py和server.py实例演示了其工作原理。

被折叠的 条评论
为什么被折叠?



