云锦诚科技专注四川德阳网站设计 四川网站制作 四川网站建设
四川德阳网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

创新互联Python教程:pythonweb.py乱码怎么解决?

web.py中的中文字符串在网页显示乱码解决方法如下:

#!/usr/bin/env python  
# encoding: utf-8  
import web
urls = (
    '/', 'index'
)
class index:
    def GET(self):
        web.header('Content-Type', 'text/html;charset=UTF-8')
        return "

你好!

" if __name__ == "__main__":     app = web.application(urls, globals())     app.run()

网页标题:创新互联Python教程:pythonweb.py乱码怎么解决?
地址分享:http://xiwangwangguoyuan.com/article/dhdeshe.html

其他资讯