将字典序列化为数组(键值对)

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

这篇关于将字典序列化为数组(键值对)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:将字典序列化为数组(键值对)

基础教程推荐