使用 python 的 http 服务器时如何设置内容类型?
我尝试使用 send_header('Content-Type', 'text/html')
。然而,这是行不通的。
I tried using send_header('Content-Type', 'text/html')
. However, this does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下内容在从
http.server.BaseHTTPRequestHandler
派生的类中适用于我:查看更多 此处和此处。
The following works for me in a class derived from
http.server.BaseHTTPRequestHandler
:See more here and here.
可能需要双引号?请参阅示例。我希望这有帮助。
May need double quotes? See example. I hope this helps.