使用 TouchXML 的 ASIHTTPRequest 示例

发布于 2024-08-11 09:40:11 字数 698 浏览 4 评论 0原文

我目前正在使用 NSXMLParser 方法来解析我的数据,如下所示: 但我发现了一些不错的选择,例如 TouchXML 。

我在 google 上搜索了一些很好的示例或教程

,但我无法理解 XPathquery 格式和解析循环,如 示例

或此 问题

我只是想知道如何解析这样一个简单的xml文档:

<ElementsArray>
  <ElementObject>
    <element1></element1>
    <element2></element1>
  <ElementObject>
. 
.
.
<ElementArray>

谁能给我示例代码或者链接也很有用。

I am currently using NSXMLParser mathods to parse my data something like this :

But I found some good option as TouchXML .

I googled for some good example or tutorial

But I can't understand the XPathquery format and the parsing loops as done in this example

or this question

I just want to know how to parse a simple xml document like this :

<ElementsArray>
  <ElementObject>
    <element1></element1>
    <element2></element1>
  <ElementObject>
. 
.
.
<ElementArray>

so can anyone give me example code or a link will also be useful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屌丝范 2024-08-18 09:40:11

使用 TouchXML 最酷的部分是,您可以使用 NSXML 的 Apple 文档,只需将 NS 替换为 C。因此,NSXMLDocument 是 CXMLDocument,NSXMLNode 是 CXMLNode,依此类推。只需查看 Apple 的 Apple 的基于树的 XML 编程指南 获取示例代码,您应该很好地了解如何在 XML 文档中使用 TouchXML。 查询 XML 文档部分应该为您提供有效使用 XPath 所需的内容。

The coolest part of using TouchXML is that you can use the Apple documentation for NSXML and simply replace the NS with C. So an NSXMLDocument is a CXMLDocument and an NSXMLNode is a CXMLNode, and so on. Just look at the Tree-Based XML Programming Guide from Apple for sample code and you should get a pretty good idea of how to use TouchXML with your XML documents. The section Querying an XML Document should give you what you need to use XPath effectively.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文