vote up 0 vote down
star

I have this code..

        Models.Person p = new testmvc.Models.Person { Firstname = "yongeks", Lastname = "ucab" };

        Models.Person p2 = new testmvc.Models.Person { Firstname = "lyn", Lastname = "torreon" };

        string q = JavaScriptConvert.SerializeObject(new String[] { JavaScriptConvert.SerializeObject(p), JavaScriptConvert.SerializeObject(p2) });

        Console.WriteLine(q);

        return q;

i need to parse this code into jquery.. using json request.. can somebody help me..

flag
add comment

2 Answers:

vote up 3 vote down

Just use the controller's Json method to serialize the type and return a JsonResult:

Models.Person p2 = new testmvc.Models.Person { Firstname = "lyn", Lastname = "torreon" };
return Json( p2 );
link|flag
add comment
vote up 0 vote down

I like working with the Newtonsoft json library. it allows you greater control over the json serialization process so you can specify what to do with null values etc

e.g

  JsonNetResult jsonNetResult = new JsonNetResult();
  jsonNetResult.Formatting = Newtonsoft.Json.Formatting.Indented;
  jsonNetResult.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
  jsonNetResult.Data = nodes
  return jsonNetResult;
link|flag
add comment

Your Answer:

Get an OpenID
or

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