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

.net core post自带的json序列化转换出错 post参数为null

时间:2020-06-03 13:46:27      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:bsp   net   col   ima   core   code   ddn   null   oop   

使用NewtonsoftJson

安装 Microsoft.AspNetCore.Mvc.NewtonsoftJson

技术图片

 

 Startup.ConfigureServices配置

            //配置Mvc + json 序列化
            services.AddMvc(options => { options.EnableEndpointRouting = false; })
                    .SetCompatibilityVersion(CompatibilityVersion.Version_3_0)
                        .AddNewtonsoftJson(options =>
                        {
                            options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
                            options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm";
                        });

 

.net core post自带的json序列化转换出错 post参数为null

标签:bsp   net   col   ima   core   code   ddn   null   oop   

原文地址:https://www.cnblogs.com/GarsonZhang/p/13036908.html

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