序列化NodaTime JSON

时间:2013-02-10 21:15:30

标签: c# datetime nodatime

我正在制作NodaTime的原型项目与BCL的DateTime相比,但是执行此结果会让我的recursionLimit超出错误。

Recursion limit exceeded

这是我用来JSONify我的viewmodel的函数。此函数返回后发生错误。

    [HttpPost]
    public JsonResult GetDates(int numOfDatesToRetrieve)
    {
        List<DateTimeModel> dateTimeModelList = BuildDateTimeModelList(numOfDatesToRetrieve);

        JsonResult result = Json(dateTimeModelList, JsonRequestBehavior.AllowGet);
        return result;
    }

我检查时,我的视图模型已正确构建。 这是我的视图模型的代码。

public class DateTimeModel
{
    public int ID;

    public LocalDateTime NodaLocalDateTimeUTC;
    public LocalDateTime NodaLocalDateTime
    {
        get
        {
            DateTimeZone dateTimeZone = DateTimeZoneProviders.Bcl.GetZoneOrNull(BCLTimezoneID);

            //ZonedDateTime zonedDateTime = NodaLocalDateTimeUTC.InUtc().WithZone(dateTimeZone);

            OffsetDateTime offsetDateTime = new OffsetDateTime(NodaLocalDateTimeUTC, Offset.Zero);
            ZonedDateTime zonedDateTime = new ZonedDateTime(offsetDateTime.ToInstant(), dateTimeZone);
            return zonedDateTime.LocalDateTime;
        }
    }

    public OffsetDateTime NodaOffsetDateTime;

    public DateTime BclDateTimeUTC;
    public DateTime BclLocalDateTime
    {
        get
        {
            DateTime utcDateTime = DateTime.SpecifyKind(BclDateTimeUTC, DateTimeKind.Utc);
            TimeZoneInfo nzTimeZone = TimeZoneInfo.FindSystemTimeZoneById(BCLTimezoneID);
            DateTime result = TimeZoneInfo.ConvertTimeFromUtc(utcDateTime, nzTimeZone);
            return result;
        }
    }

    public DateTimeOffset BclDateTimeOffset;
    //public int Offset;
    public string OriginalDateString;
    public string BCLTimezoneID;
}

我确信NodaTime对象没有正确序列化,因为当我从viewModel中注释代码时,JsonResult能够执行。

我在此页NodaTime API Reference

上阅读了此内容
  

此命名空间中的代码当前未包含在Noda Time NuGet包中;它仍然被认为是“实验性的”。要使用这些序列化程序,请从项目主页下载并构建Noda Time源代码。

所以我下载并构建了源代码并替换了dll的项目引用,但我不知道如何实现JsonSerialization类。

有人可以向我解释如何使用NodaTime.Serialization.JsonNet类来使我的NodaTime对象可序列化吗?

2 个答案:

答案 0 :(得分:7)

我们目前不支持JavaScriptSerializer:我怀疑您必须使用Json.NET 所有您的JSON序列化。 user guide page on serialization提供了一些 little 位信息,但它主要假设您已经了解了Json.NET。

好消息是Json.NET非常易于使用 - 你可能会发现它很简单:

var settings = new JsonSerializerSettings();
settings.ConfigureForNodaTime();
string json = JsonConvert.SerializeObject(model, settings);

(或使用JsonSerializer。)

顺便说一下,你使用Noda Time类型的方式至少可以说有点奇怪 - 可能值得再问一个问题,详细说明你想要实现的目标,我们可以解决这是一种更惯用的方式:)

答案 1 :(得分:2)

序列化为supported for JSON.NET in Noda Time 2.0+

您需要使用NuGet安装软件包:

> Install-Package NodaTime.Serialization.JsonNet

然后配置序列化程序设置以使用它。 无法使用默认的序列化程序/反序列化程序 - 您需要明确配置一个。

我们选择静态使用一个。您的使用可能会有所不同。这是一个例子:

using Newtonsoft.Json;
using NodaTime;
using NodaTime.Serialization.JsonNet; // << Needed for the extension method to appear!
using System;

namespace MyProject
{
    public class MyClass
    {
        private static readonly JsonSerializerSettings _JsonSettings;

        static MyClass()
        {
            _JsonSettings = new JsonSerializerSettings
            {
                // To be honest, I am not sure these are needed for NodaTime,
                // but they are useful for `DateTime` objects in other cases.
                // Be careful copy/pasting these.
                DateFormatHandling = DateFormatHandling.IsoDateFormat,
                DateTimeZoneHandling = DateTimeZoneHandling.Utc,
            };

            // Enable NodaTime serialization
            // See: https://nodatime.org/2.2.x/userguide/serialization
            _JsonSettings.ConfigureForNodaTime(DateTimeZoneProviders.Tzdb);
        }

        // The rest of your code...
    }
}