0

我正在尝试对以下字典进行 JSON 编码。但在这种情况下,message这实际上是一个unicode 字符 DEVANAGARI LETTER

因此,在将其编码dict为 json 对象时,它似乎在message.

如何在使用编码后将其更改为仅一个反斜杠“\”json.dumps()

我正在使用以下内容custom encoderencode将字典转换为 json。

class MyCustomJsonEncoder(json.JSONEncoder):
    def encode(self, obj):
        # the json obj
        count = 0
        for ob in obj:
            obj[count]['message'] = unicode(obj[count]['message']).replace("\\u","\u")
            count += 1
        return super(MyCustomJsonEncoder, self).encode(obj)

[{
    'virality': '4.6%',
    'post_engaged': 150,
    'description': '',
    'post_impressions': 1631,
    'post_story': 75,
    'name': '',
    'source': '',
    'comment_count': 16,
    'link': '',
    'text': '',
    'created_time': '03:10 AM,<br>May 13, 2013',
    'message': '\u092e\u0941\u0930\u0932\u0940 \u0938\u093e\u0930:-     \u0939\u0947 \u092e\u0940\u0920\u0947',
    'id': u'182929845081087_572281819479219',
    'status_type': 'status',
    'likes_count': 55
}]
4

1 回答 1

1

使用unicode文字以便\u理解转义序列,而不是让编译器认为您的意思是\\u.

u'\u092e....
于 2013-05-31T10:55:29.007 回答