Chilkat 解析 XML - 循环问题

发布于 2024-10-17 22:35:48 字数 710 浏览 2 评论 0原文

我正在使用 Chilkat 解析来自外部 API 的 XML 响应。当 XML 按如下方式形成时,这可以完美地工作:

<response>
<field1>data1a</field1>
<field2>data2a</field2>
<field3>data2a</field2>
</response>
<response>
<field1>data1b</field1>
<field2>data2b</field2>
<field3>data2b</field2>
</response>

使用 .NextSibling() 循环遍历节点;但是,当 XML 形成如下时:

<response>
<data field1="data1a" field2="data2a" field3="data3a"/>
<data field1="data1b" field2="data2b" field3="data3b"/>
</response>

仅捕获第一个节点(使用 .ChilkatPath 提取属性)并且 .NextSibling() 无效。

我应该使用什么来循环这些节点?

感谢您的帮助

I'm using the Chilkat to parse the XML response from an external API. This works perfectly when XML is formed as follows:

<response>
<field1>data1a</field1>
<field2>data2a</field2>
<field3>data2a</field2>
</response>
<response>
<field1>data1b</field1>
<field2>data2b</field2>
<field3>data2b</field2>
</response>

using .NextSibling() to loop through nodes; however, when XML is formed as follows:

<response>
<data field1="data1a" field2="data2a" field3="data3a"/>
<data field1="data1b" field2="data2b" field3="data3b"/>
</response>

Only the first node is captured (using .ChilkatPath to extract the attributes) and .NextSibling() has no effect.

What should I be using to loop though these nodes?

Thanks for your help

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

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

发布评论

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

评论(1

鸠书 2024-10-24 22:35:48

我只是在这里猜测,但是您是否有可能解析“响应”字段而不是“数据”字段?

在第一个示例中,响应有一个同级(2 个标签),在第二个示例中,只有 1 个“响应”标签,所以也许这可以解释为什么它没有同级。

谢伊。

I'm just throwing a shot in the dark here, but is there a chance you're parsing the "response" field instead of the "data" field ?

On the first example response has a sibling (2 tags), on the second example there's only 1 "response" tag, so maybe that explains why there's no siblings to it.

Shai.

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