当前位置: 首页 > 工具软件 > PyH > 使用案例 >

解决Pyh中编写html出现乱码问题

莫承运
2023-12-01
在使用 Pyh模块编写html的时候,出现乱码,经过搜索html加入
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
之后就不会出现乱码了。
看了下phy代码发现 charset并没有写入到xml中
doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n'
charset = '<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />\n'
在下面函数中加入
def printOut(self,file=''):
    if file: f = open(file, 'w')
    else: f = stdout
    f.write(doctype)
    f.write(charset)
    f.write(self.render())
    f.flush()
    if file: f.close()


 
 
 
 
 
 
 
 类似资料: