javascript - Need to parse complex Json -


i have , json data getting server,struggling parse json in javascript not straight forward json. here sample

[    {       "target":"collectd.matrix.oracle.avg_resp_time",       "datapoints":[          [8.0, 1365158480],          [null, 1365158490],          [null, 1365158500],          [null, 1365158510],          [null, 1365158520],          [null, 1365158530],          [8.0, 1365158540],          [null, 1365158550],          [null, 1365158560],          [null, 1365158570],          [null, 1365158580],          [null, 1365158590],          [8.0, 1365158600],          [null, 1365158610],          [null, 1365158620],          [null, 1365158630],          [null, 1365158640],          [null, 1365158650],          [8.0, 1365158660],          [null, 1365158670],          [null, 1365158680],          [null, 1365158690],          [null, 1365158700],          [null, 1365158710],          [null, 1365158720],          [null, 1365158730],          [null, 1365158740],          [null, 1365158750],          [null, 1365158760],          [null, 1365158770]       ]    } ] 

here need capture value of each field eg:x=8.0,y=1365158540

need or logic parse this.

thanks, sohan

var jsondata = json.parse(data) 

where

data = '[{"target": "collectd.matrix.oracle.avg_resp_time", "datapoints": [[8.0, 1365158480], [null, 1365158490], [null, 1365158500], [null, 1365158510], [null, 1365158520], [null, 1365158530], [8.0, 1365158540], [null, 1365158550], [null, 1365158560], [null, 1365158570], [null, 1365158580], [null, 1365158590], [8.0, 1365158600], [null, 1365158610], [null, 1365158620], [null, 1365158630], [null, 1365158640], [null, 1365158650], [8.0, 1365158660], [null, 1365158670], [null, 1365158680], [null, 1365158690], [null, 1365158700], [null, 1365158710], [null, 1365158720], [null, 1365158730], [null, 1365158740], [null, 1365158750], [null, 1365158760], [null, 1365158770]]}]'; 

jsondata[0]['datapoints'] array of datapoints

reference json.parse


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -