Here i need some help in json parsing
[{"a":0,"b":"0","c":"2A","s":"A","p":0,"Time":0},
{"a":0,"b":"0","c":"2A","s":"A","cpu":0,"Time":0},
{"a":0,"b":"0","c":"2A","s":"A","p":0,"Time":0},
{"a":0,"b":"0","c":"2A","s":"A","p":0,"Time":0},
{"a":0,"b":"0","c":"2A","s":"A","p":0,"Time":0}]
this is my json format. how can i iterate through the json.
data[0] = {"a":0,"b":"0","c":"2A","s":"A","p":0,"Time":0}; // get from iteration
and also get the individual item from this object like Time=0
Assuming your JSON string is called
s
, first sayNow
a
is an array. You iterate through it just like any other array. If for some reason you want to do something in particular with theTime
property of each array element, your code will look like this:Inside the loop, you can also access
a[i].a
,a[i].b
, and so on. Nothing is out of the ordinary here; it's all regular JavaScript.Protip: Careful with the term "JSON object." It isn't clear from the question you actually have a JSON string at all; you showed a regular JavaScript object. JSON is a text format. Once you parse the string with
JSON.parse
you are in the regular world of JavaScript, and you can use for-loops and the like to access your data. You don't really "retrieve JSON objects out of an array". That said, there could be libraries that appear to access data out of JSON strings (similar to Xpath for XML I would think), but really, just parse the string and then you have a JavaScript array (or object).