将 JObject 转换为 Dictionary<string, object>.是否可以?

Convert JObject into Dictionarylt;string, objectgt;. Is it possible?(将 JObject 转换为 Dictionarylt;string, objectgt;.是否可以?)
本文介绍了将 JObject 转换为 Dictionary<string, object>.是否可以?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 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;.是否可以?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)