我需要为the jit库创建一个自定义json。我应该使用额外的C#逻辑还是以某种方式扩展JsonSerializer。 Json应该是这样的 - >
var json = {
"children": [
{
"children": [
{
"children": [],
"data": {
"playcount": "276",
"$color": "#8E7032",
"image": "http://userserve-ak.last.fm/serve/300x300/11403219.jpg",
"$area": 276
},
"id": "album-Thirteenth Step",
"name": "Thirteenth Step"
}
}]
}
答案 0 :(得分:4)
使用Json.Net
public void Test()
{
Node root = new Node();
Node child = new Node();
Data data = new Data() { Area = 276, Color = "#8E7032", PlayCount = "276", Image = "http://userserve-ak.last.fm/serve/300x300/11403219.jpg" };
Node grandChild = new Node() { Id = "album-Thirteenth Step", Name = "Thirteenth Step", Data = data };
root.Children.Add(child);
child.Children.Add(grandChild);
var json = JsonConvert.SerializeObject(
root,
new JsonSerializerSettings() {
NullValueHandling= NullValueHandling.Ignore,
Formatting= Newtonsoft.Json.Formatting.Indented
});
}
public class Node
{
[JsonProperty("children")]
public List<Node> Children = new List<Node>();
[JsonProperty("data")]
public Data Data;
[JsonProperty("id")]
public string Id;
[JsonProperty("name")]
public string Name;
}
public class Data
{
[JsonProperty("playcount")]
public string PlayCount;
[JsonProperty("$color")]
public string Color;
[JsonProperty("image")]
public string Image;
[JsonProperty("$area")]
public int Area;
}
答案 1 :(得分:1)
答案 2 :(得分:1)
json - 使用json的最佳工具
答案 3 :(得分:0)
ServiceStack.Text是最快的。