gpt4 book ai didi

c# - 为什么 AddAfterSelf 在与 SelectToken 一起使用时返回 'JProperty cannot have multiple values'?

转载 作者:行者123 更新时间:2023-11-30 14:46:48 27 4
gpt4 key购买 nike

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

Run-time exception (line 9): Newtonsoft.Json.Linq.JProperty cannot have multiple values.

您可以在此处看到此失败: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 本身。具体来说,它返回 JProperty 所拥有的 JValue,名称为 "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() 返回所选属性的值:

string name = (string)o.SelectToken("Manufacturers[0].Name");

Console.WriteLine(name);
// Acme Co

由于 JProperty 不能有多个值,当您尝试在层次结构中的值之后立即添加 JProperty 时,您正在尝试将其添加为其父级 JProperty 的子级,它抛出异常。

相反,将其添加到父级的父级:

test.SelectToken("deeper.another").Parent.AddAfterSelf(new JProperty("new name","new value"));

样本 fiddle显示以上所有内容。

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

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com