Hey,
I am using JSONEncoder with Django and to encode dictionaries containing Unicode strings (JSONEncoder.encode()). Resulting JSON is injected in the web page. The problem I am facing is that the resulting JSON contains u markers next to the strings and thus is not correctly interpreted in java script
e.g. { u"key" : u"value" }
How can i get rid of it?
Thanks