Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How will I be able to get the value of updated in this json that is from my web service:

{"listener":{"id":"1","updated":"false"}}

Here's what I've tried:

$.ajax({
       ...
        success : function(data) {            
            console.log("received listener: " + data);            
            var received = JSON.parse(JSON.stringify(data));                              
            var listener = received.listener;  
            var length = listener.length;
            //alert('returned json' + data + ' no. of products received: ' + length);
            console.log('returned json' + listener + ' no. of listener received: ' + length); //it says undefined for the length

            var updated = listener[0].updated;

        }
    });

Thanks.

share|improve this question
JSON.parse(JSON.stringify(data)); :o – Hamish Jul 23 '12 at 3:48
Also, an Object does not have a length property. What is your bug, exactly? – Hamish Jul 23 '12 at 3:49
I want to get the value of updated which is false. – mai Jul 23 '12 at 5:11
I got it, like Hamish said. listener.updated – mai Jul 23 '12 at 5:13

1 Answer

up vote 2 down vote accepted

Firstly, this line doesn't make sense:

var received = JSON.parse(JSON.stringify(data));    

JSON.stringify converts a JSON structure to a string, and JSON.parse does the opposite. In other words:

var received = data.listener; // is equivalent.

Secondly, received is an object:

{"id":"1","updated":"false"}

It's not an array, so it does not have a length property. If you were looking to get the id of the received object then you'd obviously use:

var updated = listener.id;

For your code to work data would have to look like this:

{"listener":[{"id":"1","updated":"false"}]}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.