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

发布于 2024-12-13 02:01:54 字数 77 浏览 2 评论 0原文

我尝试使用 send_header('Content-Type', 'text/html')。然而,这是行不通的。

I tried using send_header('Content-Type', 'text/html'). However, this does not work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘寄 2024-12-20 02:01:54

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

查看更多 此处此处

The following works for me in a class derived from 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()

See more here and here.

甜扑 2024-12-20 02:01:54

可能需要双引号?请参阅示例。我希望这有帮助。

May need double quotes? See example. I hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文