How to parse JSON in javascript to take value

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amskape
    New Member
    • Apr 2010
    • 56

    How to parse JSON in javascript to take value

    Hi pals ,
    I am really stuck in parsing a JSON string and take it's values. I got the json string as
    Code:
    {"user":{"id":"1","firstname":"Freelogin","created":"0000-00-00
    00:00:00","lastname":"Administrator","email":"fred@websecurify.com",
    "usergroup_id":"1","status":"1","ip_enable":"N","priv":"0","expire":""},"data":{
    "1":{"5":{"last_update":"2010-12-13
    16:16:16","status":"0"},"3":{"last_update":"2010-12-13
    16:41:48","status":"1"}},"2":{"6":{"last_update":"2010-12-13
    16:41:48","status":"1"}}},"server_array":[{"id":"1","name":"anes.yyy.net"},{
    "id":"2","name":"neseema.xxx.net"}],"service_array":[{"id":"5","name":"POP3"},
    {"id":"6","name":"Cpanel"},{"id":"3","name":"SMTP"}],"sort_by":"servername",
    "sort_order":"ASC","pagelinks":"","totrows":"2","offset":"0","limitvalue":"10",
    "rows_monitor":2,"current":"monitor","uri":false}
    Friends How to Parse this and take the Results for further
    processing in javascript.... I am waiting to hear from you
    Soon..

    Regards
    Anes P.A
  • kaarthikeyapreyan
    New Member
    • Apr 2007
    • 106

    #2
    If you recieve it as a string in JS from your server
    you could try using the eval(variable); method, which will return JS object. or you could try the JSON.parse instead of eval.

    Comment

    Working...