码迷,mamicode.com
首页 > Web开发 > 详细

.net core 传JSON对象Controller接收不到的问题处理方法

时间:2020-07-19 00:53:10      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:api   name   core   json对象   body   turn   out   int   失败   

例如 

 //
    public class User1
    {
        public int id { get; set; }
        public string name { get; set; }
    }
//方法
        [HttpPost, Route("api/OrderPayJs/Notify0")]
      public string Notify0([FromBody]User1 u)
        {
            return "1";
        }
//传入参数
{
    id: 1,
    name: "冯东耀"
}

注意点

1 [FromBody]

2 传入参数id的传入类型要和类定义的类型一致,即 id为int型,传入时 id后的1 不可加双引号。

以上两点 如果不注意 ,则会转换对象失败,得到的对象是null

.net core 传JSON对象Controller接收不到的问题处理方法

标签:api   name   core   json对象   body   turn   out   int   失败   

原文地址:https://www.cnblogs.com/simadi/p/13338079.html

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