我想使用字符串路径将新的 JProperty 添加到 JSON 对象。
我正在检索现有路径,然后添加一个接近它的新值。
似乎无论我如何选择 token ,或者无论我调用什么 Add 方法(最相关的是 AddAfterSelf)或者我提供什么作为新值,我都会收到异常:



你可以在这里看到这个失败:https://dotnetfiddle.net/mnvmOI

为什么在这种情况下我不能添加 JProperty?

using System;
using Newtonsoft.Json.Linq;

public class Program
{
    public static void Main()
    {
        JObject test = JObject.Parse("{\"test\":123,\"deeper\":{\"another\":\"value\"}}");
        test.SelectToken("deeper.another").AddAfterSelf(new JProperty("new name","new value"));
    }
}

最佳答案

抛出异常的原因是 SelectToken() 返回 属性的 JValue 而不是 JProperty 本身 。具体来说,它返回名为 JValueJProperty 拥有的 "another" 。如果您这样做,您可以看到这一点:

Console.WriteLine("Result type: {0}; result parent type: {1}", result.GetType(), result.Parent.GetType());

这导致
Result type: Newtonsoft.Json.Linq.JValue; result parent type: Newtonsoft.Json.Linq.JProperty

如果您进一步将 JToken 层次结构顶部的对象类型打印到 SelectToken() 返回的值,您将看到 JValue 标记中包含的 JProperty 标记:
Depth: 0, Type: JObject
Depth: 1, Type: JProperty: deeper
Depth: 2, Type: JObject
Depth: 3, Type: JProperty: another
Depth: 4, Type: JValue: value

Json.NET documentation 还指示 SelectToken() 返回所选属性的值:



由于 JProperty 不能有多个值,因此当您尝试在层次结构中的值之后立即添加 JProperty 时,您是在尝试将其添加为其父 JProperty 的子项,这会引发异常。

相反,将其添加到父级的父级:
test.SelectToken("deeper.another").Parent.AddAfterSelf(new JProperty("new name","new value"));

示例 fiddle 显示了上述所有内容。

关于c# - 与 SelectToken 一起使用时,为什么 AddAfterSelf 返回 'JProperty cannot have multiple values'?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47747906/

10-12 15:14