When working with simplejson
in Django, I sometimes need to send the information strictly in order.
values = {"entry1":"value1","entry2":"value2","entry3":"value3"}
return HttpResponse(simplejson.dumps(values),content_type="application/json")
That's what it returns
{"entry2": "value2", "entry3": "value3", "entry1": "value1"}
But I want it to returns this instead:
{"entry1":"value1","entry2":"value2","entry3":"value3"}
How can I send the information in order in simplejson
?