我在包含非 ascii 字符(utf-8)的键“verb”字符串下的字典中。我想将该字典发送给客户端(我正在使用 Tornado i Python 2.7.2 和 simplejson)。我正在尝试
result = {"verb" : "Želeći"}
self.write(simplejson.dumps(result, ensure_ascii=False)) # tried also with utf-8 encoding parameter passed
self.flush()
但总是得到错误utf8 编解码器无法解码位置 0 的字节 0x8e
如何使用 simplejson 发送到包含 utf 字符的客户端字典?