摘要:
1 .Net Core 2.X版本 public IActionResult Index() { Request.EnableRewind(); using (var reader = new StreamReader(Request.Body)) { var body = reader.ReadT 阅读全文
摘要:
1:首先还是需要直接Nutget两个包: 准备两个数据类 public class Person { public string Name { get; set; } } public class PersonDto { public string Name { get; set; } } 2、通用 阅读全文