I have an array of dicts
returned by the server in an ajax request as:
var obj = [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}]
When I try to access each dictionary as:
$.each(obj,function(index,value){
alert(index + " : " + value);
});
I get the error:
Uncaught TypeError: Cannot use 'in' operator to search for '193' in [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}]
How can you access each dictionary in the array?
I have an array of dicts
returned by the server in an ajax request as:
var obj = [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}]
When I try to access each dictionary as:
$.each(obj,function(index,value){
alert(index + " : " + value);
});
I get the error:
Uncaught TypeError: Cannot use 'in' operator to search for '193' in [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}]
How can you access each dictionary in the array?
Share Improve this question edited Nov 18, 2014 at 15:53 user94628 asked Nov 18, 2014 at 15:19 user94628user94628 3,73118 gold badges54 silver badges90 bronze badges 6-
1
Your objects have an
u
in them that makes the whole thing invalid. You need to remove that. – Spokey Commented Nov 18, 2014 at 15:22 -
is that
u''
notation a Python artifact? – Alex K. Commented Nov 18, 2014 at 15:23 -
Yes I have removed the
u
– user94628 Commented Nov 18, 2014 at 15:24 - Remove them in your code not the question and it will work – Spokey Commented Nov 18, 2014 at 15:26
- Seems ok to me: jsfiddle/alexk/7j47wm3h – Alex K. Commented Nov 18, 2014 at 15:26
4 Answers
Reset to default 5You'll need one $.each() for the array, and another for handle the elements of the dictionary (which, BTW, most JS programmers call an "object")
$.each(obj,function(index,value){
$.each(value, function(index2, value2) {
alert(index2 + " : " + value2);
});
});
I don't think there is anything wrong in code you have written, its perfectly right.
http://jsfiddle/neilmalgaonkar/3y79vr4s/
var obj= [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}];
$.each(obj,function(index,value){
console.log(index, value);
});
just remove u from array it should work
the jQuery $.each
function is just a wrapper for javascripts
for-in loop. The object you are trying to iterate is invalid.
The loop is looking for key
and value
based on that key. but the value u'111'
is invalid js object notation.
Edit: You say you removed the 'u' but the error messages still says you have it...
var obj= [{'id': '111', 'name': 'test1'}, {'id': '1975', 'name': 'test2'}]
$(obj).each(function(index,value){
alert("index: " + index + ", id: " + value.id + ", name: " + value.name);
});
working : http://jsfiddle/wvqkfb1f/