Serialize dictionary as array (of key value pairs)(将字典序列化为数组(键值对))
问题描述
Json.Net 通常将 Dictionary<k,v>
序列化为集合;
Json.Net typically serializes a Dictionary<k,v>
into a collection;
"MyDict": {
"Apples": {
"Taste": 1341181398,
"Title": "Granny Smith",
},
"Oranges": {
"Taste": 9999999999,
"Title": "Coxes Pippin",
},
}
这很棒.从 SO 上环顾四周,这似乎是大多数人想要的.但是,在这种特殊情况下,我想在 Dictionary<k,v>
和数组格式之间进行序列化;
Which is great. And from looking around on SO it seems to be what most people want. However, in this particular case, I want to serialize between my Dictionary<k,v>
and the Array format instead;
"MyDict": [
"k": "Apples",
"v": {
"Taste": 1341181398,
"Title": "Granny Smith",
}
},
"k:": "Oranges",
"v:": {
"Taste": 9999999999,
"Title": "Coxes Pippin",
}
},
]
有没有一种简单的方法可以用我现有的字段类型来做到这一点?例如,有没有我可以注释的属性?
Is there an easy way to do this with my existing field type? Is there an attribute I can annotate for instance?
推荐答案
啊,事实证明这和我希望的一样简单.我的 Dictionary<k,v>
已经是子类,我发现我可以用 [JsonArrayAttribute]
对其进行注释.这正是我需要的格式;
Ah, it turns out this is as straightforward as I'd hoped. My Dictionary<k,v>
is subclassed already and I found that I can annotate it with [JsonArrayAttribute]
. That gives me exactly the format I need;
"MyDict": [
{
"Key": "Apples",
"Value": {
"Taste": 1341181398,
"Title": "Granny Smith",
}
},
{
"Key:": "Oranges",
"Value:": {
"Taste": 9999999999,
"Title": "Coxes Pippin",
}
},
]
这篇关于将字典序列化为数组(键值对)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将字典序列化为数组(键值对)
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01