在 Web API 中将字典序列化为 JSON 数组 ASP.NET
本文关键字:JSON 数组 ASP NET 序列化 字典 Web API | 更新日期: 2023-09-27 18:34:18
我想使用 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"}]
但我需要 TestClass 的 Id 成为数组的键。
在javascript中,你所说的数组必须是一个对象,其中索引是从0开始的整数。这不是您的情况。您的 id 3 和 4 不能用作 javascript 数组中的索引。因此,在这里使用列表是正确的方法。
因为如果你想使用任意索引(就像你的情况一样,你有一些不是从 0 开始的整数),这不再是一个数组,而是一个对象,其中这些整数或字符串只是这个对象的属性。这就是你用字典实现的。
您可以使用vanilla js将对象转换为数组客户端。
var jsonFromServer = {"3":{"id":3,"name":"test3"},"4":{"id":4,"name":"test4"}};
var expected = [];
Object.keys(jsonFromServer).forEach(key => expected[+key] = json[key]);
console.log(expected.length); // 5
console.log(expected[0]); // undefined
console.log(expected[1]); // undefined
console.log(expected[2]); // undefined
console.log(expected[3]); // Object { id: 3, name: "test3" }
console.log(expected[4]); // Object { id: 4, name: "test4" }