Okay
so here's my problem , I'm passing something like this to my templates :
return HttpResponse(simplejson.dumps({u"places": place_jsr, u"jobs": job_jsr, u"goods": good_jsr}), mimetype='application/json')
where place_jsr, job_jsr and good_jsr , are Lists of python Dictionaries, which are built like this :
for result in place_results:
place_jsr.append({"title":result.get_title(),"description":result.get_description(),...})
Here's the problem: accessing the javascript object and using it as an associative array shuffles the attributes of the dictionaries passed! This is inside the Ajax callback function which called that view :
for ( attr in data )
console.log(attr)
what I'm getting, is not place, job, goods, rather it seems to be a reversed form of that, something like goods, job, place, and this happens for what's inside the dictionaries too. What I'm getting again is not in the order title, description, name ... It's in the correct order in goods, but reversed in places something like ..., name, description, title!
So the problem is that it seems Javascript is shuffling associative arrays ( dictionaries ) on it's own! Does anyone know about a way to have a dictionary keeping its original order when accessed by Javascript?