在用python3写CGI接口的时候,当输出为中文的时候,存在乱码的情况,只需要在脚本的开始位置,增加如下代码即可解决。文章源自陈学虎-https://chenxuehu.com/article/2018/09/7273.html
import codecs, sys sys.stdout = codecs.getwriter('utf8')(sys.stdout.buffer)
文章源自陈学虎-https://chenxuehu.com/article/2018/09/7273.html 文章源自陈学虎-https://chenxuehu.com/article/2018/09/7273.html
评论