gpt4 book ai didi

c# - JProperty 转换为字符串而不是对象数组

转载 作者:行者123 更新时间:2023-11-30 21:38:55 26 4
gpt4 key购买 nike

我想向已解析的 Json 对象添加自定义参数。自定义参数由多个值组成,需要一个Json格式的对象数组。

当它被添加到 jsonObj 时,它被视为一个完整的字符串而不是一个数组。

var objs    = new List<JObject>();
var jsonObj = JObject.Parse(JsonConvert.SerializeObject(myTable, jsonSettings));

// Add Custom Parameter
jsonObj.Add(new JProperty("myArray", "[\"" + myTable.Col1 + "\", \"" + myTable.Col2 + "\"]"));

objs.Add(jsonObj);

当前输出:

myArray:"[\"Col1Val\", \"Col2Val\"]"

期望的输出:

myArray:[\"Col1Val\", \"Col2Val\"]

最佳答案

要使其正常工作,您应该使用正确的 constructor

public JProperty(
string name,
params Object[] content
)

所以如果你需要存储一个数组内容,你应该这样写:

jsonObj.Add(new JProperty("myArray", myTable.Col1, myTable.Col2));

关于c# - JProperty 转换为字符串而不是对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45493840/

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