asp.net mvc 接收jquery ajax发送的数组对象
Posted jxp0202
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net mvc 接收jquery ajax发送的数组对象相关的知识,希望对你有一定的参考价值。
<script type="text/javascript"> $(function () { var obj = { name: "军需品", myclass: [{ one: 1, two: 2, three: 3 }, { one: 11, two: 22, three: 33 }, { one: 111, two: 222, three: 333 }] }; $.ajax({ url: ‘<%=Url.Content("~/Home/GetList") %>‘, type: ‘POST‘, dataType: ‘json‘, data: JSON.stringify(obj), contentType: ‘application/json; charset=utf-8‘, success: function (data, state) { alert(JSON.stringify(data)); alert(state); } }); }); </script>
1 public class HomeController : Controller 2 { 3 // 4 // GET: /Home/ 5 6 public ActionResult Index() 7 { 8 return View(); 9 } 10 11 public ActionResult GetList(Myobj a) 12 { 13 return Json(a); 14 } 15 } 16 17 public class Myobj 18 { 19 public string name { get; set; } 20 public List<MyClass> myclass { get; set; } 21 } 22 23 public class MyClass 24 { 25 public int one { get; set; } 26 public int two { get; set; } 27 public int three { get; set; } 28 }
注意:集合的名称必须相同
以上是关于asp.net mvc 接收jquery ajax发送的数组对象的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET MVC Controller接收ajax post方式发送过来的json对象或数组数据
ASP.NET MVC 中的 ASP.NET AJAX 与 jQuery
使用 jQuery $.ajax 进行 ASP.NET MVC 验证
ASP.NET MVC 3 - Ajax.BeginForm 与 jQuery 表单插件