App Engine上ajax请求python中文乱码问题
程序员文章站
2024-01-25 19:48:58
...
python对utf-8编码的支持真让人恼火。在Google App Enginea上发ajax请求时,有中文字符时,乱码问题很让人头痛。尝试了一种解决方法是可行的:
[list]
[*]浏览器端使用encodeURIComponent或者encodeURI编码中文字符;
[*]服务器端使用urllib模块的unquote方法:
[/list]
[list]
[*]浏览器端使用encodeURIComponent或者encodeURI编码中文字符;
[*]服务器端使用urllib模块的unquote方法:
[/list]
str= urllib.unquote(ajaxChineseString.encode("utf-8"))
上一篇: 创新实训4 人物动作添加
下一篇: js学习day3,数组与函数(上)