How to pass complex type using json to ASP.NET MVC controller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:00:10Z http://stackoverflow.com/feeds/question/267707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller 10 How to pass complex type using json to ASP.NET MVC controller MrDustpan 2008-11-06T05:19:37Z 2009-03-20T11:57:41Z <p>I have a View that allows a user to enter/edit data for a new Widget. I'd like to form up that data into a json object and send it to my controller via AJAX so I can do the validation on the server without a postback.</p> <p>I've got it all working, except I can't figure out how to pass the data so my controller method can accept a complex Widget type instead of individual parameters for each property.</p> <p>So, if this is my object:</p> <pre><code>public class Widget { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set; } } </code></pre> <p>I'd like my controller method to look something like this:</p> <pre><code>public JsonResult Save(Widget widget) { ... } </code></pre> <p>Currently, my jQuery looks like this:</p> <pre><code>var formData = $("#Form1").serializeArray(); $.post("/Widget/Save", formData, function(result){}, "json"); </code></pre> <p>My form (Form1) has an input field for each property on the Widget (Id, Name, Price). This works great, but it ultimately passes each property of the Widget as a separate parameter to my controller method.</p> <p>Is there a way I could "intercept" the data, maybe using an ActionFilterAttribute, and deserialize it to a Widget object before my controller method gets called?</p> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/267731#267731 0 Answer by Sugendran for How to pass complex type using json to ASP.NET MVC controller Sugendran 2008-11-06T05:43:50Z 2008-11-06T05:43:50Z <p>What you want to do is structure your javascript form object in the same way your backend object is structured:</p> <pre><code>{ Id : "id", Name : "name", Price : 1.0 } </code></pre> <p>Then use the toJSON plugin to convert it into the above string. You send this string to your backend and use something like the JayRock libraries to convert it to a new Widget object.</p> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/268787#268787 2 Answer by Jeff Sheldon for How to pass complex type using json to ASP.NET MVC controller Jeff Sheldon 2008-11-06T14:04:20Z 2008-11-06T14:04:20Z <p><a href="http://www.haacked.com" rel="nofollow">Phil Haack</a> has <a href="http://www.haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx" rel="nofollow">a good blog post</a> about model binding that might be helpful. Not 100% what you're talking about here, but I think it might give you a better overall understand about the DefaultModelBinder.</p> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/269127#269127 9 Answer by MrDustpan for How to pass complex type using json to ASP.NET MVC controller MrDustpan 2008-11-06T15:29:45Z 2008-11-06T15:29:45Z <p>Thanks Jeff, that got me on the right path. The DefaultModelBinder is smart enough to do all the magic for me...my problem was in my Widget type. In my haste, my type was defined as:</p> <pre><code>public class Widget { public int Id; public string Name; public decimal Price; } </code></pre> <p>Notice that the type has public fields instead of public properties. Once I changed those to properties, it worked. Here's the final source code that works correctly:</p> <p>Widget.aspx:</p> <pre><code>&lt;%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="Widget.aspx.cs" Inherits="MvcAjaxApp2.Views.Home.Widget" %&gt; &lt;asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server"&gt; &lt;script src="../../Scripts/jquery-1.2.6.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; function SaveWidget() { var formData = $("#Form1").serializeArray(); $.post("/Home/SaveWidget", formData, function(data){ alert(data.Result); }, "json"); } &lt;/script&gt; &lt;form id="Form1"&gt; &lt;input type="hidden" name="widget.Id" value="1" /&gt; &lt;input type="text" name="widget.Name" value="my widget" /&gt; &lt;input type="text" name="widget.Price" value="5.43" /&gt; &lt;input type="button" value="Save" onclick="SaveWidget()" /&gt; &lt;/form&gt; &lt;/asp:Content&gt; </code></pre> <p>HomeController.cs:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Mvc.Ajax; namespace MvcAjaxApp2.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Title"] = "Home Page"; ViewData["Message"] = "Welcome to ASP.NET MVC!"; return View(); } public ActionResult About() { ViewData["Title"] = "About Page"; return View(); } public ActionResult Widget() { ViewData["Title"] = "Widget"; return View(); } public JsonResult SaveWidget(Widget widget) { // Save the Widget return Json(new { Result = String.Format("Saved widget: '{0}' for ${1}", widget.Name, widget.Price) }); } } public class Widget { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set; } } } </code></pre> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/463907#463907 3 Answer by simonsanderson for How to pass complex type using json to ASP.NET MVC controller simonsanderson 2009-01-21T02:17:24Z 2009-01-21T02:17:24Z <p>Great post.</p> <p>Note that (in <em>MrDustpan's</em> solution) the parameter <em>name</em> <strong>widget</strong> in the MVC Action method must match with the prefix used in the <em>name</em> attribute in the ASPX file.</p> <p>If this is not the case then the Action method will always receive a <strong>null</strong> object.</p> <pre><code>&lt;input type="text" name="widget.Text" value="Hello" /&gt; - OK &lt;input type="text" name="mywidget.Text" value="Hello" /&gt; - FAILS </code></pre> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/473713#473713 0 Answer by Krlos for How to pass complex type using json to ASP.NET MVC controller Krlos 2009-01-23T17:07:46Z 2009-01-23T17:07:46Z <p>Thanks man, you save me alot of time.</p> http://stackoverflow.com/questions/267707/how-to-pass-complex-type-using-json-to-asp-net-mvc-controller/665833#665833 0 Answer by Davy for How to pass complex type using json to ASP.NET MVC controller Davy 2009-03-20T11:57:41Z 2009-03-20T11:57:41Z <p>Thanks! This post just saved my life! :-D</p>