Json Datetime问题

可能重复:
如何强制netwtonsoft json序列化器将datetime属性序列化为字符串?

我使用Newtonsoft.Json将我的对象转换为JSon文件。 但我有DateTime的问题,在我的对象日期时间字段设置为"7/30/2012 8:29:12 PM"但在Json文件中,我得到日期时间字段在这种格式"/Date(1343660352227+0530)/"

我需要以与对象相同的格式获取日期时间。 有可能吗?为了获得相同的格式,我该怎么做?


我得到如下解决方案。

JsonConvert.SerializeObject(this, Formatting.None, new IsoDateTimeConverter() {
    DateTimeFormat = "yyyy-MM-dd hh:mm:ss"
});

答案如下:

如何强制netwtonsoft json序列化器将datetime属性序列化为字符串?

链接地址: http://www.djcxy.com/p/8153.html

上一篇: Json Datetime issue

下一篇: Convert unix timestamp to javascript date Object