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类型数据的主要内容,如果未能解决你的问题,请参考以下文章

Newtonsoft.Json

如何使用 C# 进行条件序列化 - NewtonSoft.Json

Newtonsoft JSON 序列化

再谈Newtonsoft.Json高级用法

如何通过NewtonSoft反序列化对象json列表?

使用 Newtonsoft Json 从流中反序列化多个 json 对象