我正在学习关于HTTP协议的一些事情,并且正在尝试用Python编写基本的WSGI应用程序。我安装了gunicorn
WSGI服务器并获得了一个基本的" Hello World"工作。
但是,我仍然想知道如何在页面上显示实际的HTML。也就是说,如何在我的回复中包含HTML?
示例:
def app(environ, start_response):
"""Simplest possible application object"""
data = b'<html> Hello, World!\n </html>'
status = '200 OK'
response_headers = [
('Content-type','text/plain'),
('Content-Length', str(len(data)))
]
start_response(status, response_headers)
return iter([data])