vote up 0 vote down star

I can't seem to access my objects.

after parsing the server string:

var json = JSON.parse(myJsonText):

I get the below with an alert:

alert(json.param1)

{"ID":17,"Name":"swimming pools","ParentID":4,"Path":""},
{"ID":64,"Name":"driveways","ParentID":4,"Path":""}

Now, I am trying to access ID and Name.

I have tried:

json.param1[0].ID
json.param1[0]["ID"]
json.param1[0][0]

And a lot of others that really don't make much sense such as:

json[0].ID or 
json.param1.ID etc...

I am getting (for example, in the case of json.param1[0].ID):

param1.0.ID is null or not an object.

Any ideas?

flag

2  
You might want to post a segment or sample of the origin JSON rather than the alerted version -- Array.toString doesn't return valid JSON, which can be misleading. – Jonathan Lonowski Sep 21 at 21:47
Yes, what's the value of myJsonText that caused your alert? – Jim Ferrans Sep 21 at 22:10

5 Answers

vote up 1 vote down check

Try this

// you already have this bit
var json = JSON.parse(myJsonText);
alert(json.param1);

// add this
var tmp_param1 = JSON.parse(json.param1);
json.param1 = tmp_param1;
alert(json.param1);  // should print [object, object] or similar

alert(json.param1[0].ID);  // should print "17"
alert(json.param1[0].Name);  // should print "swimming pools"
link|flag
Thanks, that did the trick. What is going wrong on the server end that I have to do this in the first place? – Code Sherpa Sep 22 at 14:19
The server is sending the main JSON text (myJsonText) as an array of quoted strings, rather than an array of JSON objects. Each string is a JSON text that requires the second parse to get at the objects. If you alert(myJsonText) and look carefully, I bet you'll see the extra quotation marks. – system PAUSE Sep 22 at 15:57
Yeah, that is what is happening. I am guessing there is no real reason to revisit my server logic and change how the JSON is being delivered to the client. I'll use your solution for future parsing. Thanks again. – Code Sherpa Sep 25 at 3:31
vote up 2 vote down

That looks like invalid JSON. Try wrapping it in the brackets which makes it a valid array of JSON objects. Then access it by index.

[
    {"ID":17,"Name":"swimming pools","ParentID":4,"Path":""},
    {"ID":64,"Name":"driveways","ParentID":4,"Path":""}    
]
link|flag
he said that that is the output from calling alert(json.param1) – nickf Sep 21 at 21:46
Regardless that is still invalid JSON. – ChaosPandion Sep 21 at 21:48
well that's my point: it's not JSON, it's the output from an object which was apparently created successfully from some JSON. – nickf Sep 21 at 21:49
@nickf: I would have expected to see [object] or something else in an alert if it were a valid object being alert. I don't believe an object's JSON format is alerted. – David Andres Sep 21 at 21:50
1  
@nickf: Look beyond the array to the objects within. ;) alert(json.param1) should be "[object],[object]" – Jonathan Lonowski Sep 21 at 22:11
show 2 more comments
vote up 2 vote down

If you are receiving the raw JSON in the alert, then that would lead me to believe there is a problem w/ the JSON you are trying to parse.

link|flag
if there were a problem with the raw JSON, then he wouldn't be able to see the value of json.param1... – nickf Sep 21 at 21:59
The array is probably fine, but it seems the objects within are being parsed as strings: (abbr.) ["{\"ID\":17}","{\"ID\":64}"] Thus, seeing {"ID":17},{"ID":64} when alerted. – Jonathan Lonowski Sep 21 at 22:03
vote up 1 vote down

To compile and expand on all of the comments... ;)


Your first clue that something's wrong is your alert:

alert(json.param1)

Instead of getting:

{"ID":17,"Name":"swimming pools","ParentID":4,"Path":""},
{"ID":64,"Name":"driveways","ParentID":4,"Path":""}

You should be getting something similar to the following:

[object],[object]


Try alerting the typeof array element, itself:

alert(typeof json.param1[0]) //=> should say "object"

If you get anything besides "object", either the JSON isn't formatted correctly or the parser is failing.


One good clue as to which is wrong is if the original JSON looks like this:

{"param1" : [
  "{\"ID\":17,\"Name\":\"swimming pools\",\"ParentID\":4,\"Path\":\"\"}",
  "{\"ID\":64,\"Name\":\"driveways\",\"ParentID\":4,\"Path\":\"\"}"
]}

Then, it's probably the JSON that's broken. (Sorry ;)

On the other hand, if your JSON looks like this:

{"param1" : [
  {"ID":17,"Name":"swimming pools","ParentID":4,"Path":""},
  {"ID":64,"Name":"driveways","ParentID":4,"Path":""}
]}

Then, it's probably the parser.

link|flag
vote up 0 vote down

if json.param1 is what you said it is, then json.param1[0].ID should work (and evaluate to "17").

If it's not working, could you show us the text you're parsing to generate the JSON object?

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.