Newtonsoft.Json序列化DateTime类型数据
Posted 现实的味道~~~Vinkong~~~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Newtonsoft.Json序列化DateTime类型数据相关的知识,希望对你有一定的参考价值。
Newtonsoft.Json序列化DateTime类型数据为字符串时候,前端显示带了一个T
格式化方法:
IsoDateTimeConverter timeConverter = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" };
return JsonConvert.SerializeObject(Object,Formatting.Indented,timeConverter);
以上是关于Newtonsoft.Json序列化DateTime类型数据的主要内容,如果未能解决你的问题,请参考以下文章