python中打印显示unicode字符串的时候,有没有办法显示正常能看懂的字符

2012-11-05 12:06:35 +08:00
 timchou
我是在Flask中写api的时候,返回json数据的时候,其中的字符串显示都是如下:

{
"state": 1,
"error": "email\u4e0d\u80fd\u4e3a\u7a7a"
}

有没有什么办法能够直接显示正常能读的字符串呢
5931 次点击
所在节点    Python
4 条回复
reorx
2012-11-05 13:40:16 +08:00
这是个坑爹的问题,在使用 dump 或 dumps 函数的时候一定要传上 ensure_ascii=False 的参数。解释见文档:

If ensure_ascii is True (the default), all non-ASCII characters in the output are escaped with \uXXXX sequences, and the result is a str instance consisting of ASCII characters only. If ensure_ascii is False, some chunks written to fp may be unicode instances. This usually happens because the input contains unicode strings or the encoding parameter is used. Unless fp.write() explicitly understands unicode (as in codecs.getwriter()) this is likely to cause an error.

http://docs.python.org/2/library/json.html#json.dump
zhy0216
2012-11-05 13:47:06 +08:00
用Google插件Advanced Rest Client做测试, 会显示中文
timchou
2012-11-05 14:44:02 +08:00
@zhy0216 感谢,不过这个插件不支持最新版本的chrome。

@reorx 恩,这个方法可行,不过我用的是Flask框架,其内部有一个jsonify()的方法,你只要自己写诸如return jsonify(a=1,b='ppp'),flask会直接返回给浏览器一个封装了的json数据。我看了下flask源代码里面jsonify()的实现,内部直接用了默认的ensure_ascii=True,所以我们只能手动更改下flask的源代码,在helpers.py中大概197行加下这个ensure_ascii=False就可以了。

多谢各位。
zhy0216
2012-11-05 23:31:23 +08:00
@timchou 原来有内置的jsonify啊... 我还自己搞了一个
def jsonify(f):
import jsonpickle
@wraps(f)
def inner(*args, **kwds):
return Response(jsonpickle.encode(f(*args, **kwds),unpicklable=False),
mimetype='application/json')
return inner

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/51750

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX