asp.net mvc 接收jquery ajax发送的数组对象
2021-02-10 16:16
标签:请求 play list 图片 str 数组 return string 技术 注意:集合的名称必须相同 asp.net mvc 接收jquery ajax发送的数组对象 标签:请求 play list 图片 str 数组 return string 技术 原文地址:https://www.cnblogs.com/jxp0202/p/12742244.html 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
下一篇:python正则表达式
文章标题:asp.net mvc 接收jquery ajax发送的数组对象
文章链接:http://soscw.com/index.php/essay/53640.html