Hi,
A website returns the following JSON response, how would I consume it (in javascript)?
[{"ID1":9996,"ID2":22}]
Is JSON simply returning an array?
|
2
|
Hi, A website returns the following JSON response, how would I consume it (in javascript)?
Is JSON simply returning an array?
|
||
|
|
|
We use:
An alternative method is to simply use:
Basically, you have to call
You could use a javascript library to handle this for you. Or, you could try to parse the string yourself. |
||||
|
|
|
Here's how you get to your data:
|
||
|
|
|
It looks like an array with a single object holding two properties. I'd much prefer to see the same data structured like this:
Then you have a single object holding an array with two elements, which seems to be a better fit for the data presented. Then using Endangered's
|
|||
|
|
|
|
The JSON you posted represents an array containing one object, which has attributes ID1 and ID2 (initialized to the respective values after the colon). To convert the string to a javascript object, pass it to eval, like this:
However, this method will fail if you only have a single object instead of an array, so it is safer to wrap it in parenthesis:
|
||
|
|
|
|
If you use http://www.JSON.org/json2.js you can use it's method JSON.parse to retrieve the json string as an object (without the use of eval (which is considered evil)), so in this case you would use:
|
|||
|
|
|
|
I think the other answers might not answer your question, maybe you're looking for a way to use that "array of 1 object". Maybe this can help:
|
||
|
|