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

使用NewtonsoftJson

安装 Microsoft.AspNetCore.Mvc.NewtonsoftJson

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

 

 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

上一篇:VS2019项目模板中没有[ASP.NET空网站]的解决方案


下一篇:js 抓取 表格数据