vote up 11 vote down star
6

How do you return a serialized JSON object to the client side using ASP.NET MVC via an AJAX call?

flag

2 Answers

vote up 18 vote down check

From the controller you can just return a JsonResult:

public ActionResult MyAction()
{
    ... // Populate myObject
    return new JsonResult{ Data = myObject };
}

The form of the Ajax call will depend on which library you're using, of course. Using jQuery it would be something like:

$.getJSON("/controllerName/MyAction", callbackFunction);

where the callbackFunction takes a parameter which is the data from the XHR request.

link|flag
How would you pass parameters to the MyAction? – Picflight Jul 9 at 17:23
No formatting in a comment, but... $.getJSON("/controllerName/MyAction", { id: 7 }, callbackFunction); – Benji Oct 27 at 13:29
vote up 6 vote down

Depending on your syntax preferences, the following also works:

public ActionResult MyAction()
{
    return Json(new {Data = myObject});
}
link|flag

Your Answer

Get an OpenID
or

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