我想扩展SimpleHTTPRequestHandler并覆盖do_GET()
的默认行为。我从自定义处理程序返回一个字符串,但客户端没有收到响应。
这是我的处理程序类:
DUMMY_RESPONSE = """Content-type: text/html
<html>
<head>
<title>Python Test</title>
</head>
<body>
Test page...success.
</body>
</html>
"""
class MyHandler(CGIHTTPRequestHandler):
def __init__(self,req,client_addr,server):
CGIHTTPRequestHandler.__init__(self,req,client_addr,server)
def do_GET(self):
return DUMMY_RESPONSE
我必须更改哪些才能使其正常工作?
答案 0 :(得分:11)
类似(未经测试的代码):
def do_GET(self):
self.send_response(200)
self.send_header("Content-type", "text/html")
self.send_header("Content-length", len(DUMMY_RESPONSE))
self.end_headers()
self.wfile.write(DUMMY_RESPONSE)
答案 1 :(得分:2)
上述答案有效,但您可能会在此行中获得TypeError: a bytes-like object is required, not 'str'
:self.wfile.write(DUMMY_RESPONSE)
。
您需要执行此操作:self.wfile.write(str.encode(DUMMY_RESPONSE))