In short, I'm looking for a way to move complex graphs of objects between browser code (jQuery) and server code (ASP.NET MVC). JSON does not support object references, so standard serialization of a circular object of reference is not possible out of the box.
The proposed standard for JSON object references floats, which is currently implemented by DoJox and (apparently) the .NET DataContractJsonSerializer class.
Although DoJo seems like a mature JavaScript library, I can't run DoJo side by side with jQuery.
Does anyone know of a technique or plugin that will allow me to serialize, deserialize complex JSON graphical objects using jQuery?
source
share