如何使用JS中的Zend_Json编码的UTF-8数字?

时间:2011-06-17 18:46:43

标签: php json utf-8 character-encoding

我正在使用Zend_Json(实际上,我正在使用带有自动json序列化的ajaxContext),我需要发送用Utf-8编码的日语字符。

我从我的ajax请求中收到了这样的数据:

{"comments":"\\u65e5\\u672c\\u6700"}

现在,我该怎么办?在我的html页面中将它“翻译”成可读的字符?

谢谢

1 个答案:

答案 0 :(得分:1)

您可以使用jquery json解析器来解码字符。

jQuery.parseJSON(response);

此函数将编码的字符转换为html中的可读字符。