Core Json 序列化相关问题
Posted lgq168
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Core Json 序列化相关问题相关的知识,希望对你有一定的参考价值。
//返回json 大小写 配置
services.AddMvc()
.AddJsonOptions( op => op.SerializerSettings.ContractResolver =
new Newtonsoft.Json.Serialization.DefaultContractResolver() );
//返回json 时间格式
.AddJsonOptions(op => op.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss");
以上是关于Core Json 序列化相关问题的主要内容,如果未能解决你的问题,请参考以下文章
使用 Vue 和 ASP.NET Core DTO 模型的 JSON 对象的 JSON 序列化问题
如何在 asp.net core 3 中设置 json 序列化程序设置?