gpt4 book ai didi

c# - 在 ASP.NET Web API 中将字典序列化为 JSON 数组

转载 作者:行者123 更新时间:2023-11-30 16:15:47 24 4
gpt4 key购买 nike

我想使用 ASP.NET Web API 将字典序列化为 JSON 数组。为了说明当前输出,我有以下设置:

Dictionary<int, TestClass> dict = new Dictionary<int, TestClass>();
dict.Add(3, new TestClass(3, "test3"));
dict.Add(4, new TestClass(4, "test4"));

测试类定义如下:

public class TestClass
{
public int Id { get; set; }
public string Name { get; set; }

public TestClass(int id, string name)
{
this.Id = id;
this.Name = name;
}
}

当序列化为 JSON 时,我得到以下输出:

{"3":{"id":3,"name":"test3"},"4":{"id":3,"name":"test4"}} 

不幸的是,这是一个对象而不是数组。是否有可能以某种方式实现我想要做的事情?它不需要是字典,但我需要将 TestClass 的 ID 作为数组的键。

对于下面的列表,它被正确地序列化为一个数组,但没有使用正确的键。

List<TestClass> list= new List<TestClass>();
list.Add(new TestClass(3, "test3"));
list.Add(new TestClass(4, "test4"));

序列化为 JSON:

[{"id":3,"name":"test3"},{"id":4,"name":"test4"}] 

最佳答案

but I need the Id's of the TestClass to be the Key's of the Array.

在 javascript 中,您所谓的数组 必须是一个对象,其中的索引是从 0 开始的整数。这不是你的情况。您有 id 3 和 4,它们不能用作 javascript 数组中的索引。所以在这里使用 List 是正确的方法。

因为如果你想使用任意索引(在你的情况下你有一些不是从 0 开始的整数)这不再是一个数组而是一个对象,其中那些整数或字符串只是这个对象的属性。这就是您使用词典实现的目标。

关于c# - 在 ASP.NET Web API 中将字典序列化为 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19208289/

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