How do I change a JSON object into an array key/value pairs through code?
from:
{
'name':'JC',
'age':22
}
to:
['name':JC,'age':22] //actually, see UPDATE
UPDATE:
...I meant:
[{"name":"JC"},{"age":22}]
|
How do I change a JSON object into an array key/value pairs through code? from:
to:
UPDATE: ...I meant:
|
||||
|
May be you only want understand how to iterate it:
Update:
|
||||
|
|
If you're trying to convert a JSON string into an object, you can use the built in JSON parser (although not in old browsers like IE7):
Note that you have to use double quotes for your JSON to be valid. |
|||
|
|
|
There is no associative array in JavaScript. Object literals are used instead. Your JSON object is such literal already. |
|||
|
|
["name","JC","age",22]or[{"name":"JC"},{"age":22}]? – Rob W Mar 7 '12 at 23:41