簡體   English   中英

如何從.NET數據結構中創建“鋸齒狀”對象的JSON數組

[英]How to create JSON arrays of “jagged” objects from a .NET data structure

作為LINQ-to-Entities投影的結果,我最終得到了一個List<ChartDataRecord> ,該List<ChartDataRecord>類似於以下如果我手動創建它:

List<ChartDataRecord> data = new List<ChartDataRecord>();
data.Add(new ChartDataRecord { date = 1370563200000, graph = "g0", value = 70 });
data.Add(new ChartDataRecord { date = 1370563200000, graph = "g1", value = 60 });
data.Add(new ChartDataRecord { date = 1370563200000, graph = "g2", value = 100 });
data.Add(new ChartDataRecord { date = 1370563260000, graph = "g0", value = 71 });
data.Add(new ChartDataRecord { date = 1370563260000, graph = "g2", value = 110 });
data.Add(new ChartDataRecord { date = 1370563320000, graph = "g0", value = 72 });
data.Add(new ChartDataRecord { date = 1370563320000, graph = "g1", value = 62 });
data.Add(new ChartDataRecord { date = 1370563320000, graph = "g2", value = 150 });

我正在使用的圖表框架(amCharts)要求JSON數據提供程序的格式必須完全如下:

{
   "data": [
      { "date": 1370563200000, "g0": 70, "g1": 60, "g2": 100 },
      { "date": 1370563260000, "g0": 71, "g2": 110 },
      { "date": 1370563320000, "g0": 72, "g1": 62, "g2": 150 }
   ],
   ...other chart properties
}

將樣本List<ChartDataRecord>序列化為此JSON結構的推薦方法是什么? Json.NET框架中是否有可以使之變得相當容易的東西? 如果沒有,該如何手動完成? 我是否應該為List<ChartDataRecord>使用更動態的數據結構,並嘗試使用LINQ-to-Entities查詢填充它?

您可以使用自定義轉換器來執行此操作,如下所示:

class ChartDataRecordCollectionConverter : JsonConverter
{
    /// <summary>
    /// Writes the JSON representation of the object.
    /// </summary>
    /// <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param><param name="value">The value.</param><param name="serializer">The calling serializer.</param>
    public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
    {
        var set = (ChartDataRecordCollection) value;

        writer.WriteStartObject();
        writer.WritePropertyName("data");
        writer.WriteStartArray();

        //Group up the records in the collection by the 'date' property
        foreach (var record in set.GroupBy(x => x.date))
        {
            writer.WriteStartObject();

            writer.WritePropertyName("date");
            writer.WriteValue(record.Key);

            //Write the graph/value pairs as properties and values
            foreach (var part in record)
            {
                writer.WritePropertyName(part.graph);
                writer.WriteValue(part.value);
            }

            writer.WriteEndObject();
        }

        writer.WriteEndArray();
        writer.WriteEndObject();
    }

    /// <summary>
    /// Reads the JSON representation of the object.
    /// </summary>
    /// <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param><param name="objectType">Type of the object.</param><param name="existingValue">The existing value of object being read.</param><param name="serializer">The calling serializer.</param>
    /// <returns>
    /// The object value.
    /// </returns>
    public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
    {
        var result = new ChartDataRecordCollection();
        var obj = JObject.Load(reader);
        var container = obj["data"];

        //Examine each object in the array of values from the result
        foreach (JObject item in container)
        {
            //Get and store the date property
            var date = item["date"].Value<long>();

            //For each property that is not the date property on the object, construct a
            //  ChartDataRecord with the appropriate graph/value pair
            foreach (var property in item.Properties())
            {
                if (property.Name == "date")
                {
                    continue;
                }

                result.Add(new ChartDataRecord
                {
                    date = date,
                    graph = property.Name,
                    value = item[property.Name].Value<int>()
                });
            }
        }

        return result;
    }

    /// <summary>
    /// Determines whether this instance can convert the specified object type.
    /// </summary>
    /// <param name="objectType">Type of the object.</param>
    /// <returns>
    /// <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
    /// </returns>
    public override bool CanConvert(Type objectType)
    {
        return objectType == typeof (ChartDataRecordCollection);
    }
}

該轉換器將對包裝類型為List<ChartDataRecord>的收集類型進行操作,如下所示

[JsonConverter(typeof(ChartDataRecordCollectionConverter))]
public class ChartDataRecordCollection : List<ChartDataRecord>
{
    public ChartDataRecordCollection()
    {
    }

    public ChartDataRecordCollection(IEnumerable<ChartDataRecord> records)
    {
        AddRange(records);
    }
}

使用示例(以及正確性證明):

public class ChartDataRecord
{
    public long date { get; set; }
    public string graph { get; set; }
    public int value { get; set; }

    public override bool Equals(object obj)
    {
        var o = (ChartDataRecord) obj;
        return o.date == date && o.graph == graph && o.value == value;
    }
}

...

static void Main(string[] args)
{
    var data = new List<ChartDataRecord>
    {
        new ChartDataRecord { date = 1370563200000, graph = "g0", value = 70 },
        new ChartDataRecord { date = 1370563200000, graph = "g1", value = 60 },
        new ChartDataRecord { date = 1370563200000, graph = "g2", value = 100 },
        new ChartDataRecord { date = 1370563260000, graph = "g0", value = 71 },
        new ChartDataRecord { date = 1370563260000, graph = "g2", value = 110 },
        new ChartDataRecord { date = 1370563320000, graph = "g0", value = 72 },
        new ChartDataRecord { date = 1370563320000, graph = "g1", value = 62 },
        new ChartDataRecord { date = 1370563320000, graph = "g2", value = 150 }
    };

    var records = new ChartDataRecordCollection(data);

    var result = JsonConvert.SerializeObject(records);
    Console.WriteLine(result);
    var test = JsonConvert.DeserializeObject<ChartDataRecordCollection>(result);
    Console.WriteLine(records.SequenceEqual(test));
    Console.ReadLine();
}

輸出:

{"data":[{"date":1370563200000,"g0":70,"g1":60,"g2":100},{"date":1370563260000,"g0":71,"g2":110},{"date":1370563320000,"g0":72,"g1":62,"g2":150}]}
true

是的,JSON.NET可以很輕松地處理它。 只需將列表添加到另一個對象的“數據”屬性中,然后序列化即可。 下面的示例對“包裝器”對象使用匿名類型,但是“正常” CLR類型也可以使用。

public class StackOverflow_17012831
{
    public class ChartDataRecord
    {
        public long date { get; set; }
        public string graph { get; set; }
        public int value { get; set; }
    }
    public static void Test()
    {
        List<ChartDataRecord> data = new List<ChartDataRecord>();
        data.Add(new ChartDataRecord { date = 1370563200000, graph = "g0", value = 70 });
        data.Add(new ChartDataRecord { date = 1370563200000, graph = "g1", value = 60 });
        data.Add(new ChartDataRecord { date = 1370563200000, graph = "g2", value = 100 });
        data.Add(new ChartDataRecord { date = 1370563260000, graph = "g0", value = 71 });
        data.Add(new ChartDataRecord { date = 1370563260000, graph = "g2", value = 110 });
        data.Add(new ChartDataRecord { date = 1370563320000, graph = "g0", value = 72 });
        data.Add(new ChartDataRecord { date = 1370563320000, graph = "g1", value = 62 });
        data.Add(new ChartDataRecord { date = 1370563320000, graph = "g2", value = 150 });

        var obj = new { data = data, name = "Name" };
        string str = JsonConvert.SerializeObject(obj);
        Console.WriteLine(str);
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM