标签: python content-type httpserver
我尝试使用send_header('Content-Type', 'text/html')。但是,这不起作用。
send_header('Content-Type', 'text/html')
答案 0 :(得分:0)
以下内容在我从http.server.BaseHTTPRequestHandler派生的类中为我工作:
http.server.BaseHTTPRequestHandler
self.send_response(200) self.send_header("Content-type", "text/plain") self.end_headers() # Your response body follows with self.wfile.write()
查看更多here和here。
答案 1 :(得分:-3)
可能需要双引号?见example。我希望这会有所帮助。