使用python的http服务器时如何设置内容类型?

时间:2011-10-31 14:02:30

标签: python content-type httpserver

我尝试使用send_header('Content-Type', 'text/html')。但是,这不起作用。

2 个答案:

答案 0 :(得分:0)

以下内容在我从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()

查看更多herehere

答案 1 :(得分:-3)

可能需要双引号?见example。我希望这会有所帮助。