For instance, if I tried to create something like this
@json = Array.new
for x in 0..1
y = 2
@json << ["Id" => x, "Label" => y]
end
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @nodes }
end
This is the JSON that is returned:
[[{"Id":0,"Label":2}], [{"Id":1,"Label":2}]]
Then if I want to access it in java script, I have to do array[i][0].id to find the id. When I should just be able to do array[i].id to grab the id.
Any suggestions?
.idwhy use upcaseIdto build the hash? – tokland May 23 '12 at 17:20