Sending an array of json objects to action with ajax in asp.net mvc 3
问题 I hope anyone can help me (Sorry for my english). I have a problem when I want to send un array of arrays in ajax. My model is: public class SJSonModel { public string Name { get; set; } public bool isChecked { get; set; } } public class SJSonModelList { public List<SJSonModel> Features { get; set; } public List<SJSonModel> MenuItems { get; set; } } The controller: [HttpPost] public ActionResult CheckPreferences(SJSonModelList postData) { BindUserFeatures(postData.Features); return Json(new {