【问题标题】:Bind netcore IConfigurationSection to a dynamic object将 netcore IConfigurationSection 绑定到动态对象
【发布时间】:2018-04-24 16:55:10
【问题描述】:

在我的 appSettings.json 中,我有一个配置部分,只要它的 json 有效,就可以包含任何内容。它通常是一组键/值(字符串/字符串)

我想在我的代码中获取它并在控制器调用中返回它。

我查看了源代码 (https://github.com/aspnet/Configuration/blob/6d9519622b5db2c5ac6bafa8bcdb25fe27914de3/src/Config.Binder/ConfigurationBinder.cs),似乎我注定要使用现成的解决方案。

如果我将用例限制为键值对,我可以在 IConfigSection 中使用 AsEnumerable(),这很好。如果我想允许列表,那么我可能仍然可以解析键来查找 :Number 但是有人有办法轻松反序列化随机对象吗?或者甚至更好地获取配置部分而不对其进行反序列化。

例如

{
 "mySettings": 
 {
   "key1": "value1",
   "key2": "value2",
   "list": [ "item1", "item2", "item3" ],
   "complexObject": {
     "key": "value",
     "anything" :  [{"id": "3", "name": "John"}]
   }
 }
}

【问题讨论】:

  • 你不能。它被称为“强类型配置”是有原因的。
  • 您可以使用动态对象。

标签: c# asp.net-core asp.net-core-mvc


【解决方案1】:

如果您滥用 .NET 4 动态对象,这是可能的。正如您所说,您可以枚举配置中的所有键,它们都遵循相同的模式。在您的示例中,所有感兴趣的键都是:

mySettings null 
mySettings:list null 
mySettings:list:2 item3 
mySettings:list:1 item2 
mySettings:list:0 item1 
mySettings:key3 value3 
mySettings:key2 value2 
mySettings:key1 value1 
mySettings:complexObject null 
mySettings:complexObject:key value 
mySettings:complexObject:anything null 
mySettings:complexObject:anything:0 null 
mySettings:complexObject:anything:0:name John 
mySettings:complexObject:anything:0:id 3 

由此,我们可以构建一个ExpandoObject,如下所示:

[HttpGet]
public IActionResult Get([FromServices] IConfiguration config)
{
    var result = new ExpandoObject();

    // retrieve all keys from your settings
    var configs = config.AsEnumerable().Where(_ => _.Key.StartsWith("mySettings"));
    foreach(var kvp in configs) 
    {
        var parent = result as IDictionary<string, object>;
        var path = kvp.Key.Split(':');

        // create or retrieve the hierarchy (keep last path item for later)
        var i = 0;
        for (i = 0; i < path.Length - 1; i++)
        {
            if (!parent.ContainsKey(path[i]))
            {
                parent.Add(path[i], new ExpandoObject());
            }

            parent = parent[path[i]] as IDictionary<string, object>;
        }

        if (kvp.Value == null)
            continue;

        // add the value to the parent
        // note: in case of an array, key will be an integer and will be dealt with later
        var key = path[i];
        parent.Add(key, kvp.Value);
    }

    // at this stage, all arrays are seen as dictionaries with integer keys
    ReplaceWithArray(null, null, result);

    return Ok(result);
}

private void ReplaceWithArray(ExpandoObject parent, string key, ExpandoObject input) 
{
    if (input == null)
        return;

    var dict = input as IDictionary<string, object>;
    var keys = dict.Keys.ToArray();

    // it's an array if all keys are integers
    if (keys.All(k => int.TryParse(k, out var dummy))) {
        var array = new object[keys.Length];
        foreach(var kvp in dict) {
            array[int.Parse(kvp.Key)] = kvp.Value;
            // Edit: If structure is nested deeper we need this next line 
            ReplaceWithArray(input, kvp.Key, kvp.Value as ExpandoObject);
        }

        var parentDict = parent as IDictionary<string, object>;
        parentDict.Remove(key);
        parentDict.Add(key, array);
    }
    else
    {
        foreach (var childKey in dict.Keys.ToList())
        {
            ReplaceWithArray(input, childKey, dict[childKey] as ExpandoObject);
        }
    }
}

注意:由于冒号: 用作分隔符,因此您不能拥有包含冒号的键。

最后,因为你现在有一个动态对象,你可以直接获取它的属性:

dynamic asDym = result;
string name = asDym.mySettings.complexObject.anything[0].name;

【讨论】:

  • 像魅力一样工作!但是有一个问题,在这里使用 ExpandoObject 而不是 Dictionary 有什么好处?我进行了测试,两者似乎都有效。
  • 使用ExpandoObject 允许您将result 用作真正的动态对象,以便您可以使用点语法访问任何成员(请参阅我答案末尾的示例)。如果您不需要访问控制器中的单个属性,而只需要整个对象,则可以使用字典。
猜你喜欢
  • 2017-12-15
  • 1970-01-01
  • 1970-01-01
  • 2019-05-18
  • 2011-02-11
  • 2022-07-05
  • 2016-12-26
  • 1970-01-01
  • 2019-08-23
相关资源
最近更新 更多