我正在尝试更新JToken的值,但它的引用没有得到更新.
JSON字符串:
{ "Title": "master", "Presentation": [ { "Component": { "Content": { "Title": "Set New Title", } } } ] }
用法如下
JObject jo = JObject.Parse(File.ReadAllText(file.json)); foreach (var token in jo.SelectTokens("$..Component.Content").Children()) { JProperty prop = token.ToObject(); prop.Value = "New Title"; } string jsonText = JsonConvert.SerializeObject(jo, Formatting.Indented);
在这个例子中,我正在尝试更新Title属性的值.它在foreach中得到更新,意味着局部变量正在更新,但更改未反映在主要作业中.
如果我做错了什么,有人可以帮助我吗?
一旦你打电话,ToObject
你正在使用副本.如果你试试这个,它应该工作:
JObject jo = JObject.Parse(File.ReadAllText(file.json)); foreach (var prop in jo.SelectTokens("$..Component.Content") .Children().OfType()) { prop.Value = "New Title"; } string jsonText = JsonConvert.SerializeObject(jo, Formatting.Indented);
或处理多种类型的JToken
s:
JObject jo = JObject.Parse(File.ReadAllText(file.json)); foreach (var token in jo.SelectTokens("$..Component.Content") .Children()) { var prop = token as JProperty; if (prop != null) prop.Value = "New Title"; var array = token as JArray; if (array != null) { // some other logic } } string jsonText = JsonConvert.SerializeObject(jo, Formatting.Indented);