gpt4 book ai didi

c# - JSON 字符串到 C# 中的模型/HashMap/字典

转载 作者:行者123 更新时间:2023-11-30 14:47:19 26 4
gpt4 key购买 nike

我有 JSON:

{
"One": [
{
"ID": 1,
"name": "s"
},
{
"categoryID": 2,
"name": "c"
}
],
"Two": [
{
"ID": 3,
"name": "l"
}
],
"Three": [
{
"ID": 8,
"name": "s&P"
},
{
"ID": 52,
"name": "BB"
}
]
}

我想:

  1. 将此 JSON 带到任何对象(如 JObject)

  2. 根据不同的条件过滤 JSON(如名称以 s 开头等)

  3. 将此 JSON 返回给客户端

我尝试过的事情:1. 创建模型:

class Model
{
public int Id;
public string name;
}
class MainModel
{
public string mainName;
public List<Model> categories;
}

并使用这些模型来:

List<MainModel> m = json_serializer.DeserializeObject(jsonString);
  1. 我也尝试过字典,但无法抛出异常。

如有任何帮助,我们将不胜感激。

最佳答案

以下将允许您将 JSON 反序列化为字典并对其进行过滤。这使用 Newtonsoft.Json Nuget 包,但这很常见。代码贴在下面。在这里找到工作示例 .Net Fiddle .

using System;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;


public class Program
{
public static void Main()
{
var json = "{\"One\": [{ \"ID\": 1, \"name\": \"s\"},{ \"categoryID\": 2, \"name\": \"c\"}],\"Two\": [{ \"ID\": 3, \"name\": \"l\"}],\"Three\": [{ \"ID\": 8, \"name\": \"s&P\"},{ \"ID\": 52, \"name\": \"BB\"}]}";
var deserialized = JsonConvert.DeserializeObject<Dictionary<string, List<Model>>>(json);

Console.WriteLine(deserialized["One"][0].name);

Console.WriteLine("Filter to starts with s");
var filtered = deserialized.SelectMany(item => item.Value).Where(innerItem => innerItem.name.StartsWith("s"));
foreach(var item in filtered){
Console.WriteLine(item.name);
}

}

public class Model{
public int ID {get;set;}
public string name {get;set;}
public int categoryID {get;set;}
}
}

关于c# - JSON 字符串到 C# 中的模型/HashMap/字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45580794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com