我正在尝试使用C#和JSON.NET迭代嵌套的JSON数组。 JSON代表在线网上商店的类别 - 下面是一个例子。我的目标是创建所有类别名称的列表。
{
"id": 2,
"parent_id": 1,
"name": "Main Category List",
"is_active": true,
"position": 1,
"level": 1,
"product_count": 0,
"children_data": [
{
"id": 9,
"parent_id": 2,
"name": "Mens Clothing",
"is_active": true,
"position": 6,
"level": 2,
"product_count": 0,
"children_data": []
},
{
"id": 8,
"parent_id": 2,
"name": "Womens Clothing",
"is_active": true,
"position": 7,
"level": 2,
"product_count": 0,
"children_data": [
{
"id": 223,
"parent_id": 8,
"name": "Outdoor Clothing",
"is_active": true,
"position": 1,
"level": 3,
"product_count": 0,
"children_data": []
},
{
"id": 224,
"parent_id": 8,
"name": "Hiking Clothing",
"is_active": true,
"position": 2,
"level": 3,
"product_count": 0,
"children_data": []
},
{
"id": 596,
"parent_id": 8,
"name": "Dresses",
"is_active": true,
"position": 3,
"level": 3,
"product_count": 0,
"children_data": [
{
"id": 694,
"parent_id": 596,
"name": "Summer Dresses",
"is_active": true,
"position": 13,
"level": 4,
"product_count": 0,
"children_data": [
{
"id": 720,
"parent_id": 694,
"name": "Accessories",
"is_active": true,
"position": 1,
"level": 5,
"product_count": 0,
"children_data": [ ]
}
]
}
]
}
]
},
{
"id": 10,
"parent_id": 2,
"name": "Sale & Clearance",
"is_active": true,
"position": 8,
"level": 2,
"product_count": 0,
"children_data": []
}
]
}
可能有不同级别的类别,我需要解析每个类别。我想获得每个类别并创建一个地图。例如(主要类别列表 - >女装 - >户外服装)。我想我可以查看子数据的深度,但我不知道如何更深入地检查下一个Json对象。
JObject responseObject = JObject.Parse(response.Content);
foreach (JObject category in getCatResponseObj.SelectToken("children_data"))
{
while loop checking depth of children_data
}
答案 0 :(得分:0)
这似乎是递归定义的结构。您应该创建一个函数来提取每个子项的值,以便您可以递归地重用它。
IEnumerable<string> GetCategoryNames(JObject data)
{
yield return (string)data["name"];
foreach (var name in data["children_data"].Cast<JObject>().SelectMany(GetCategoryNames))
yield return name;
}
然后在根对象上调用它以将您的名字放入列表或其他任何内容。
var obj = JObject.Parse(response.Content);
var names = GetCategoryNames(obj).ToList();
否则,如果您想不加区分地获取对象树中的所有名称,请记住SelectToken()
/ SelectTokens()
也需要json路径查询。因此,要获得所有后代的所有名称,您只需执行此操作:
let names = obj.SelectTokens("..name").ToList();
答案 1 :(得分:0)
如果是我,我会创建我能提出的最完整的JSON文件(包括所有可能的条目),然后使用json2csharp或等效的工具来创建c#类然后反序列化Json并使用它本身。你可能不得不按摩结果 - 但我认为你可以到达那里。如果那不起作用,我会使用Newtonsofts JSON LINQ Features (documentation)。 JToken为您提供父/子组合,允许您在树上上下移动。文档中的示例非常好,因此无需填写重复信息页面。
(从您的示例生成)
public class ChildrenData
{
public int id { get; set; }
public int parent_id { get; set; }
public string name { get; set; }
public bool is_active { get; set; }
public int position { get; set; }
public int level { get; set; }
public int product_count { get; set; }
public List<object> children_data { get; set; }
}
public class RootObject
{
public int id { get; set; }
public int parent_id { get; set; }
public string name { get; set; }
public bool is_active { get; set; }
public int position { get; set; }
public int level { get; set; }
public int product_count { get; set; }
public List<ChildrenData> children_data { get; set; }
}