使用BaseHTTPRequestHandler在python3中提供简单网页时遇到编码问题。
这是一个有效的例子:
#!/usr/bin/python3
# -*- coding: utf-8 -*
from http.server import BaseHTTPRequestHandler, HTTPServer
from os import curdir, sep, remove
import cgi
HTML_FILE_NAME = 'test.html'
PORT_NUMBER = 8080
# This class will handles any incoming request from the browser
class myHandler(BaseHTTPRequestHandler):
# Handler for the GET requests
def do_GET(self):
self.path = HTML_FILE_NAME
try:
with open(curdir + sep + self.path, 'r') as f:
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
self.wfile.write(bytes(f.read(), 'UTF-8'))
return
except IOError:
self.send_error(404, 'File Not Found: %s' % self.path)
try:
# Create a web server and define the handler to manage the incoming request
with open(HTML_FILE_NAME, 'w') as f:
f.write('<!DOCTYPE html><html><body> <p> My name is Jérôme </p> </body></html>')
print('Started httpserver on port %i.' % PORT_NUMBER)
#Wait forever for incoming http requests
HTTPServer(('', PORT_NUMBER), myHandler).serve_forever()
except KeyboardInterrupt:
print('Interrupted by the user - shutting down the web server.')
server.socket.close()
remove(HTML_FILE_NAME)
预期的结果是提供显示我的名字是Jérôme的网页。
相反,我有:我的名字是JérÃ'me
正如您所看到的,html页面已正确编码,self.wfile.write(bytes(f.read(), 'UTF-8'))
,因此我认为问题来自Web服务器。
如何告诉Web服务器以UTF-8提供页面?
答案 0 :(得分:4)
您的网络服务器已经将编码的文本发送到UTF-8,但您需要告诉浏览器它接收的字节的编码。 HTTP规范。声明ISO-8995-1为默认值。
HTTP标准的做法是使用Content-type
子键标记charset
标头值。
因此,您应该将代码更改为:
self.send_header('Content-type', 'text/html; charset=utf-8')
另外,请注意HTML文件的编码。如果没有encoding given to open()
,则会根据您的区域设置进行猜测。这不会破坏任何内容,除非您最终在区域设置为C
,POSIX
或非拉丁语Windows的情况下运行此脚本。
答案 1 :(得分:3)
如果我添加:
没问题<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
在我的HTML头中。