What is the JSON.NET equivalent of XML#39;s XPath, SelectNodes, SelectSingleNode?(什么是 XML 的 XPath、SelectNodes、SelectSingleNode 的 JSON.NET 等价物?)
问题描述
目前我的代码结构使用XmlDocument
加载Xml数据,然后SelectNodes
遍历一个重复项的列表.
At present, the structure of my code uses XmlDocument
to load Xml data and then SelectNodes
to iterate through a list of repeating items.
对于每个元素,我使用 XmlNode.SelectSingleNode
来挑选字段元素.
For each element, I am using XmlNode.SelectSingleNode
to pick out the field elements.
我现在想使用 JSON.NET 来获得与作为 JSON 交付给我的文档相同的结果.答案可以不是 JSON.net,只要它是 C# 可集成的.
I now want to use JSON.NET to achieve the same results with documents delivered to me as JSON. The answer can be something other than JSON.net, so long as it's C# integrable.
推荐答案
Json.NET 有 SelectToken.它使用类似于 DataBinder.Eval 的语法通过字符串表达式获取 JSON:
Json.NET has SelectToken. It uses a syntax similar to DataBinder.Eval to get JSON via a string expression:
JObject o = JObject.Parse("{'People':[{'Name':'Jeff'},{'Name':'Joe'}]}");
// get name token of first person and convert to a string
string name = (string)o.SelectToken("People[0].Name");
或者如果您想选择多个值:
Or if you wanted to select multiple values:
JObject o = JObject.Parse("{'People':[{'Name':'Jeff','Roles':['Manager', 'Admin']}]}");
// get role array token of first person and convert to a list of strings
IList<string> names = (string)o.SelectToken("People[0].Roles").Select(t => (string)t).ToList();
文档:使用 SelectToken 查询 JSON
这篇关于什么是 XML 的 XPath、SelectNodes、SelectSingleNode 的 JSON.NET 等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是 XML 的 XPath、SelectNodes、SelectSingleNode 的 JSON.NET 等价物?
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01