码迷,mamicode.com
首页 > Windows程序 > 详细

ASP.NET Core MVC/WebAPi 模型绑定

时间:2018-11-04 12:38:27      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:cli   person   res   url   .net   from   action   ica   web   

1 public class Person
2      {
3          public string Name { get; set; }
4          public string Address { get; set; }
5          public int Age { get; set; }
6      }

 

 1 $("#btnJson").on("click", function () {
 2                 var datajson = { Name: "Jeffcky", Age: 24, Address: "湖南省" };
 3                 console.log(datajson);
 4                 $.ajax({
 5                     url: "../api/WebAPi/PostPerson",
 6                     contentType: "application/x-www-form-urlencoded;charset=utf-8",
 7                     dataType: "json",
 8                     type: "post",
 9                     data: datajson,
10                     success: function (data) {
11                         console.log(data);
12                     }
13                 });
14             });

 

 

1          [HttpPost]
2          public IActionResult PostPerson([FromBody]Person p)
3          {
4              return Json(p);
5          }

ASP.NET Core MVC/WebAPi 模型绑定

标签:cli   person   res   url   .net   from   action   ica   web   

原文地址:https://www.cnblogs.com/earlymoon/p/9903214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!