up vote 10 down vote favorite
9
share [g+] share [fb]

I'm trying to use the ASP.NET MVC Ajax.BeginForm helper but don't want to use the existing content insertion options when the call completes. Instead, I want to use a custom JavaScript function as the callback.

This works, but the result I want should be returned as JSON. Unfortunately, the framework just treats the data as a string. Below is the client code. The server code simply returns a JsonResult with one field, UppercaseName.

<script type='text/javascript'>
    function onTestComplete(content) {
        var result = content.get_data();
        alert(result.UppercaseName);
    }
</script>

<% using (Ajax.BeginForm("JsonTest", new AjaxOptions() {OnComplete = "onTestComplete" })) { %>
    <%= Html.TextBox("name") %><br />
    <input type="submit" />
<%} %>

Instead of showing the uppercase result, it is instead showing undefined. content.get_data() seems to hold the JSON, but only in string form. How do I go about converting this to an object?

All of this seems a bit convoluted really. Is there a better way to get at the resulting content using Ajax.BeginForm? If it's this hard, I may skip Ajax.BeginForm entirely and just use the jQuery form library.

link|improve this question

69% accept rate
Can you show the code for your controller action? – tvanfosson Nov 20 '08 at 4:37
The controller action is not the issue. It literally is one line: return Json(new {UppercaseName = name.ToUpper()}); – Brian Vallelunga Nov 20 '08 at 4:53
feedback

5 Answers

up vote 10 down vote accepted

Try this:

var json_data = content.get_response().get_object();

this will give you result in JSON format and you can use json_data[0] to get the first record

link|improve this answer
OK, this worked. It still seems convoluted however. I'm not sure why they just don't return the data directly. – Brian Vallelunga Nov 20 '08 at 17:26
4  
So what is get_data() supposed to do then? – Schneider Apr 17 '09 at 4:25
feedback

In response to the comment by Brian, the reason they "just don't return the data directly" is because the object form is not the default form of data being returned via HTTP. When you make an http call, you get a string back. The fact is that in order to turn it into an object, you must take an extra step to evaluate it using the eval function.

link|improve this answer
feedback

You can use the OnFailure and OnSuccess instead of OnComplete; OnSuccess gives you the data as a proper JSON object. You can find the callback method signatures burried in ~/Scripts/jquery.unobtrusive-ajax.min.js which you should load on your page.

In your Ajax.BeginForm:

new AjaxOptions
    {
        OnFailure = "onTestFailure",
        OnSuccess = "onTestSuccess"
    }

Script block:

<script>
//<![CDATA[

    function onTestFailure(xhr, status, error) {

        console.log("xhr", xhr);
        console.log("status", status);
        console.log("error", error);

        // TODO: make me pretty
        alert(error);
    }

    function onTestSuccess(data, status, xhr) {

        console.log("data", data);
        console.log("xhr", xhr);
        console.log("status", status);

        // Here's where you use the JSON object
        //doSomethingUseful(data);
    }

//]]>
</script>

This was tested using with 1.6.3.

link|improve this answer
Nice to know that data, status, xhr are sent back, thanks! – Martin Oct 5 '11 at 20:44
feedback

try using the below code.

<script type='text/javascript'>
    function onTestComplete(content) {
        var result = eval( '(' + content.get_data() + ')' );
        alert(result.UppercaseName);
    }
</script>
link|improve this answer
feedback

Make sure you have included MicrosoftAjax.js and MicrosoftMvcAjax.js. Then use the following calls on the returned context to get a json object out of the return.

var json = context.get_data();
var data = Sys.Serialization.JavaScriptSerializer.deserialize(json);
link|improve this answer
These libraries are redundant now, and highly bloated. I wouldn't want to be including them just to make one tiny call like this. A better solution would be pure jquery just using the included unobtrusive jquery scripts. – Aaron Feb 24 '11 at 6:37
feedback

Your Answer

 
or
required, but never shown

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