1

我正在尝试使用 Newtonsoft.JSON 将 DataTable 转换为 JSON,但发现输出不是 ExtJS 网格和图表所期望的。

我的代码是

string output = JsonConvert.SerializeObject(dt, Formatting.Indented,
                            new JsonSerializerSettings
                            {
                                ReferenceLoopHandling = ReferenceLoopHandling.Ignore
                            });

这将 Json 字符串返回为

"[{\"DAYDATE\":\"2012-05-22T00:15:00\",\"SERIES1\":3.65}]"

如果我删除 '\' 并开始和结束双引号,它可以在 ExtJS 中正常工作。

我还尝试将日期格式更改为更多 JSON'y

string javascriptJson = JsonConvert.SerializeObject(entry, new JavaScriptDateTimeConverter());

结果是

"[{\"DAYDATE\":new Date(1337642100000),\"SERIES1\":3.65}]"

仍然没有运气

4

1 回答 1

2

看起来您的 JSON 正在被双重序列化。尽管您没有显示完整的控制器代码,但我猜您正在执行以下操作:

    public ActionResult GetDataTable()
    {
        // (... code to build data table omitted for brevity ...)

        // Serialize data table using Json.Net to avoid circular reference error
        string output = JsonConvert.SerializeObject(dt,
            new JsonSerializerSettings
            {
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
                Formatting = Formatting.Indented
            });

        return Json(output);
    }

Json()方法还调用序列化。通常,在 MVC 控制器中,您只需使用该Json()方法来序列化您的返回对象,而不是单独使用 Json.Net。我可以看到您在这里使用 Json.Net 来尝试解决在尝试序列化数据表时由于循环引用而发生的异常。如果要手动序列化,则需要以不会再次序列化的方式返回数据。您可以改用该Content()方法来执行此操作。试试这样:

public ActionResult GetDataTable()
{
    // Build data table
    DataTable dt = new DataTable();
    dt.Columns.Add("DAYDATE", typeof(DateTime));
    dt.Columns.Add("SERIES1", typeof(double));
    dt.Rows.Add(new DateTime(2012, 5, 22, 0, 15, 0), 3.65);

    // Serialize data table using Json.Net to avoid circular reference error
    string output = JsonConvert.SerializeObject(dt,
        new JsonSerializerSettings
        {
            ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
            Formatting = Formatting.Indented
        });

    // Output is already serialized; return it as is (with the appropriate media type)
    return Content(output, "application/json");
}

在我的测试中,以上将产生以下输出,我认为这是您正在寻找的:

[ { "DAYDATE": "2012-05-22T00:15:00", "SERIES1": 3.65 } ]
于 2013-10-03T13:20:49.480 回答