I am facing problem in getting the variables from my response string. My response is like this:
responseText = {'page':'2','endOfPage':'yes','content':'abc'}
alert(responseText.page);
is returning undefined, can anyone suggest how to do it??
|
I am facing problem in getting the variables from my response string. My response is like this:
is returning undefined, can anyone suggest how to do it?? |
||||
| show 1 more comment |
|
Your problem is that your responseText is in fact a string (
If you can't change the JSON-generator implementation to return a response with double quotes, try to replace every single quote into a double quote like this:
|
|||||||||||
|
which is supported in some modern browsers for parsing JSON into a native js object |
||||
|
|
|
You need to use the eval function to convert json to object:
|
|||||||||||||||||
|
2. The problem lies elsewhere. – H2CO3 Nov 6 '12 at 7:14