vote up 0 vote down star
1

I've had problems trying to send JSON to ASP.NET MVC Controllers. I don't want to accept one string parameter on each controller method and deserialize manually. I have found that constructing a collection of post variables works reliably, but I don't have a generalized function to do so. I can write one myself if no one has done it already but I find it really hard to believe.

If no one answers this by tomorrow I guess I'll stop being lazy.

Edit: To be clear, I'm not asking how to serialize .NET objects to JSON. I'm asking if anyone has written a javascript function to do the following:

given javascript object:

{ 
	name: { first: "first", last: "last" }, 
	age: 35,
	drinks: [
		{ carbonated: false, name: "juice" },
		{ carbonated: true, name: "soda" }
	]
}

returns (POST request as object):

name.first	:	first
name.last	:	last
age			:	35
drinks[0].carbonated	:	false
drinks[0].name			:	juice
drinks[1].carbonated	:	true
drinks[1].name			:	soda

Thanks.

flag
3  
Can you add a question? Are you asking if there is an existing library to do this? Are you asking for help with some particular issue you ran into when trying to create a generalize function yourself? – Erv Walter Nov 5 at 22:15

3 Answers

vote up 0 vote down

Their a question already where someone has written a Action filter to do this, you might want to check out their solution.

http://stackoverflow.com/questions/672079/binding-application-json-to-poco-object-in-asp-net-mvc-serialization-exception

link|flag
vote up 0 vote down

So, there's the System.Runtime.Serialization.Json.DataContractJsonSerializer class in .Net v3.5 and up. It serializes and deserializes JSON data to objects. You'll have to reference System.ServiceModel.Web assembly.

The System.Web.Mvc.Controller.Json() function can handle your serialization needs too.

So you've got the controller covered there and it sounds like you've got the javascript side covered, right?

link|flag
vote up 1 vote down

Maybe this will help:

http://aleembawany.com/2009/05/22/json-serializers-in-net/

http://stackoverflow.com/questions/945585/c-automatic-property-deserialization-of-json

link|flag
+1 Thanks @LukLed, was wondering this myself. – griegs Nov 5 at 22:41

Your Answer

Get an OpenID
or

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