asp.net – 如何强制netwtonsoft json序列化程序序列化datetime属性字符串?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何强制netwtonsoft json序列化程序序列化datetime属性字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Newtonsoft的Json
当我serialze日期时间属性我得到json响应为:
..."CreatedOn":"\/Date(1317303882420+0500)\/",...

我想它在简单的字符串

..."createdOn": "2011-05-05 14:03:07",...

而我的类属性是DateTime,我如何可以强制序列化它作为字符串,因为我们可以添加属性更改属性名称

[JsonProperty("id")]
        public int ProductID { get; set; }

是否有类似的方法强制一个DateTime属性序列化为字符串?

解决方法

从James Newton-King在StackOverflow上发表的帖子看,你可以这样做。
string isoJson = JsonConvert.SerializeObject(this,new IsoDateTimeConverter());
// {"Details":"Application started.","LogDate":"2009-02-15T00:00:00Z"}

参考答案:
Parsing JSON DateTime from Newtonsoft’s JSON Serializer

这里也是关于Json.NET和日期的文档:
Serializing Dates in JSON

下面是使用DateTimeFormat属性自定义输出的示例:

return JsonConvert.SerializeObject(this,Formatting.None,new IsoDateTimeConverter() { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" });
原文链接:https://www.f2er.com/aspnet/254917.html

猜你在找的asp.Net相关文章