因为json.dumps 序列化时对中文默认使用的ascii编码.想输出真正的中文需要指定ensure_ascii=False import json print json.dumps(‘中文’,ensure_ascii=False)