I got a problem, first I made a api that accepts a post request,
then responds with JSON as a result.
Post request data had been encoded, I accepted the post data, and got the data
rightly, then I response with the new data in JSON format.
But when I returned the JSON, I found that the string is unicode format, e.g.
{
'a':'\u00e3\u0080'
}
but, I want to get a format like this:
{
'a':"ã"
}
I want this format because I found that this unicode format didn't work well in IE8.
Yes, IE8.
What can I do for this issue? Thanks!
If you're using standard library
json
module, specifyingensure_ascii=False
give you what you want.For example:
According to
json.dump
documentation:BTW, what do you mean "unicode format didn't work well in IE8," ?