- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 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/
出于好奇,我尝试了一些原型(prototype)制作,但似乎只允许在第一个位置使用子例程的原型(prototype) &。 当我写作时 sub test (&$$) { do_somethin
我需要开发一个类似于 Android Play 商店应用程序或类似 this app 的应用程序.我阅读了很多教程,发现几乎每个教程都有与 this one 类似的例子。 . 我已经开始使用我的应用程
考虑一个表示“事件之间的时间”的列: (5, 40, 3, 6, 0, 9, 0, 4, 5, 18, 2, 4, 3, 2) 我想将这些分组到 30 个桶中,但桶会重置。期望的结果: (0, 1,
我是一名优秀的程序员,十分优秀!