gpt4 book ai didi

JavaScript 和 XPath : not loading all matches of tag

转载 作者:行者123 更新时间:2023-12-02 22:20:57 25 4
gpt4 key购买 nike

我正在创建一个 XML 模板,然后加载到我的 JS 代码中。我在加载标签的所有实例时遇到问题。在此示例中,<section> :

let xmltemplate = `<?xml version="1.0" encoding="UTF-8" ?>
<sheet>
<meta>
<version>0</version>
<author></author>
<contact></contact>
<notes></notes>
<released></released>
<updated></updated>
</meta>
<section name="section 1"></section>
<section name="section 2"></section>
</sheet>`;


var xmlDoc = (new DOMParser).parseFromString(xmltemplate, 'text/xml');
let nodes = xmlDoc.evaluate("//section", xmlDoc, null, XPathResult.ANY_TYPE, null);
var result = nodes,iterateNext();
console.log(result);

控制台仅显示第一部分,而不是两者:

<section name="section 1"/>

我在这里缺少什么?

谢谢!

最佳答案

您需要在 while 循环中进行迭代:

var node = null;
while ( node = nodes.iterateNext()) {
console.log(node)
}

关于JavaScript 和 XPath : not loading all matches of tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59229333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com