vote up 2 vote down star

Executing that:

$.post(
"/url/to/method",
{ },
function(data){
    var obj2 = eval("("+$(data).children()+")");
    // OR var obj = $.evalJSON($($(data).children())); // Jquery-json
    $body = $("#AAA");
    $body.html(obj.fied);
},
 "xml"
);

while turn into a "missing ] after element list" (at row 5 or 6) error in firebug. The JSON output from method has been validated with jsonlint.com/

Probably is obvious but please I'm newbie around AJAX/JSON. Thanks

flag
3  
Don’t use eval to parse the JSON data. Use JSON.parse instead. – Gumbo Apr 26 at 14:51
1  
@Gumbo, Agreed JSON.parse can be found at json.org/js.html – bendewey Apr 26 at 14:55
If you post the JSON, it'd be easier to help. – Török Gábor Apr 28 at 9:18

2 Answers

vote up 3 vote down

Use the JSON.parse method, or be sure to include a space next to your parens before passing it to eval...

eval(" (" + data + ") ");
link|flag
Using eval with spaces is still a no go (Same error). Using JSON.parse i go a strange error: text.replace is not a function, json2.js:445 – noname Apr 26 at 15:39
Please post the JSON. If it contains sensitive info, re-create the error using dummy data. There is obviously something wrong with it. – Josh Stodola Apr 27 at 21:51
vote up 0 vote down

Are you writing this in the .NET 2.0? If so try constructing your data into a query string rather than passing a JSON object.

Example: var1=alma&var2=user

Where "var1" and "var2" are the names of the parameters that your webmethod expects. Pass this using the post.. Data: {querystring} I ran into issues when passing JSON to webservice in 2.0.

Good Luck

link|flag

Your Answer

Get an OpenID
or

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