3

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

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

TestClass 定义如下:

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"}] 
4

2 回答 2

3

但我需要 TestClass 的 Id 是数组的键。

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

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

于 2013-10-06T12:24:28.307 回答
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" }
于 2019-01-21T20:52:28.410 回答