<legend id='0MaXG'><style id='0MaXG'><dir id='0MaXG'><q id='0MaXG'></q></dir></style></legend>

      <small id='0MaXG'></small><noframes id='0MaXG'>

      <i id='0MaXG'><tr id='0MaXG'><dt id='0MaXG'><q id='0MaXG'><span id='0MaXG'><b id='0MaXG'><form id='0MaXG'><ins id='0MaXG'></ins><ul id='0MaXG'></ul><sub id='0MaXG'></sub></form><legend id='0MaXG'></legend><bdo id='0MaXG'><pre id='0MaXG'><center id='0MaXG'></center></pre></bdo></b><th id='0MaXG'></th></span></q></dt></tr></i><div id='0MaXG'><tfoot id='0MaXG'></tfoot><dl id='0MaXG'><fieldset id='0MaXG'></fieldset></dl></div>
      <tfoot id='0MaXG'></tfoot>

          <bdo id='0MaXG'></bdo><ul id='0MaXG'></ul>
      1. 将 JObject 转换为 Dictionary&lt;string, object&gt;.是否可以?

        Convert JObject into Dictionarylt;string, objectgt;. Is it possible?(将 JObject 转换为 Dictionarylt;string, objectgt;.是否可以?)
        <i id='tJYkh'><tr id='tJYkh'><dt id='tJYkh'><q id='tJYkh'><span id='tJYkh'><b id='tJYkh'><form id='tJYkh'><ins id='tJYkh'></ins><ul id='tJYkh'></ul><sub id='tJYkh'></sub></form><legend id='tJYkh'></legend><bdo id='tJYkh'><pre id='tJYkh'><center id='tJYkh'></center></pre></bdo></b><th id='tJYkh'></th></span></q></dt></tr></i><div id='tJYkh'><tfoot id='tJYkh'></tfoot><dl id='tJYkh'><fieldset id='tJYkh'></fieldset></dl></div>

                <tbody id='tJYkh'></tbody>
                <bdo id='tJYkh'></bdo><ul id='tJYkh'></ul>
                <tfoot id='tJYkh'></tfoot><legend id='tJYkh'><style id='tJYkh'><dir id='tJYkh'><q id='tJYkh'></q></dir></style></legend>

                  <small id='tJYkh'></small><noframes id='tJYkh'>

                  本文介绍了将 JObject 转换为 Dictionary&lt;string, object&gt;.是否可以?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一个 Web API 方法,它接受任意 json 有效负载到 JObject 属性中.因此,我不知道会发生什么,但我仍然需要将其转换为 .NET 类型.我想要一个 Dictionary<string,object> 以便我可以以任何我想要的方式处理它.

                  I have a web API method that accepts an arbitrary json payload into a JObject property. As such I don't know what's coming but I still need to translate it to .NET types. I would like to have a Dictionary<string,object> so that I can deal with it any way I want to.

                  我进行了很多搜索,但找不到任何东西,最终开始了一种混乱的方法来进行这种转换,一个键一个键,一个值一个值.有什么简单的方法吗?

                  I have searched a lot, but couldn't find anything and ended up starting a messy method to do this conversion, key by key, value by value. Is there an easy way to do it?

                  输入->

                  JObject person = new JObject(
                      new JProperty("Name", "John Smith"),
                      new JProperty("BirthDate", new DateTime(1983, 3, 20)),
                      new JProperty("Hobbies", new JArray("Play football", "Programming")),
                      new JProperty("Extra", new JObject(
                          new JProperty("Foo", 1),
                          new JProperty("Bar", new JArray(1, 2, 3))
                      )
                  )
                  

                  谢谢!

                  推荐答案

                  我最终混合使用了这两个答案,因为没有一个真正能解决问题.

                  I ended up using a mix of both answers as none really nailed it.

                  ToObject() 可以做 JSON 对象的第一级属性,但嵌套对象不会被转换为 Dictionary().

                  ToObject() can do the first level of properties in a JSON object, but nested objects won't be converted to Dictionary().

                  也无需手动执行所有操作,因为 ToObject() 非常适合用于一级属性.

                  There's also no need to do everything manually as ToObject() is pretty good with first level properties.

                  代码如下:

                  public static class JObjectExtensions
                  {
                      public static IDictionary<string, object> ToDictionary(this JObject @object)
                      {
                          var result = @object.ToObject<Dictionary<string, object>>();
                  
                          var JObjectKeys = (from r in result
                                             let key = r.Key
                                             let value = r.Value
                                             where value.GetType() == typeof(JObject)
                                             select key).ToList();
                  
                          var JArrayKeys = (from r in result
                                            let key = r.Key
                                            let value = r.Value
                                            where value.GetType() == typeof(JArray)
                                            select key).ToList();
                  
                          JArrayKeys.ForEach(key => result[key] = ((JArray)result[key]).Values().Select(x => ((JValue)x).Value).ToArray());
                          JObjectKeys.ForEach(key => result[key] = ToDictionary(result[key] as JObject));
                  
                          return result;
                      }
                  }
                  

                  它可能存在无法工作的边缘情况,并且性能不是它的最强质量.

                  It might have edge cases where it won't work and the performance is not the strongest quality of it.

                  谢谢大家!

                  这篇关于将 JObject 转换为 Dictionary&lt;string, object&gt;.是否可以?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)
                  <tfoot id='fkFm0'></tfoot>
                  • <bdo id='fkFm0'></bdo><ul id='fkFm0'></ul>

                          <small id='fkFm0'></small><noframes id='fkFm0'>

                          1. <i id='fkFm0'><tr id='fkFm0'><dt id='fkFm0'><q id='fkFm0'><span id='fkFm0'><b id='fkFm0'><form id='fkFm0'><ins id='fkFm0'></ins><ul id='fkFm0'></ul><sub id='fkFm0'></sub></form><legend id='fkFm0'></legend><bdo id='fkFm0'><pre id='fkFm0'><center id='fkFm0'></center></pre></bdo></b><th id='fkFm0'></th></span></q></dt></tr></i><div id='fkFm0'><tfoot id='fkFm0'></tfoot><dl id='fkFm0'><fieldset id='fkFm0'></fieldset></dl></div>
                              <tbody id='fkFm0'></tbody>
                            <legend id='fkFm0'><style id='fkFm0'><dir id='fkFm0'><q id='fkFm0'></q></dir></style></legend>