Chilkat 解析 XML - 循环问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是在这里猜测,但是您是否有可能解析“响应”字段而不是“数据”字段?
在第一个示例中,响应有一个同级(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.