web.py中的中文字符串在网页显示乱码解决方法如下:
#!/usr/bin/envpython #encoding:utf-8 importweb urls=( '/','index' ) classindex: defGET(self): web.header('Content-Type','text/html;charset=UTF-8') return"<h1>你好!</h1>" if__name__=="__main__": app=web.application(urls,globals()) app.run()原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容