|
2 |
Corrected spelling
|
||
Hot How to pass complex type using json to ASP.NET MVC controller |
||||
|
1 |
|
||
Hot to pass complex type using json to ASP.NET MVC controllerI 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. 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. So, if this is my object:
I'd like my controller method to look something like this:
Currently, my jQuery looks like this:
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. 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?
|
||||
