DOM getElementsByTagName() 返回具有 NULL 值的节点

发布于 2024-12-27 16:45:24 字数 892 浏览 3 评论 0原文

我有一个 XML 文件,如下所示。

当我使用 getElementsByTagName("LEVEL2_ID") 时,我确实得到了一个带有 NodesNodeList ,但这些节点具有 NULL 值(换句话说,每个结果节点上的 getNodeValue() 将返回 NULL)。这是为什么呢?我需要获取每个节点的内容值,在本例中为 2000

XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
    <Date>01/17/2012</Date>
    <LEVEL1>
        <LEVEL1_ID>1000</LEVEL1_ID>

        <LEVEL2>
           <LEVEL2_ID>2000</LEVEL2_ID>
        </LEVEL2>
    </LEVEL1>
</Root>

在 Java 中,打印通过 getElementsByTagName() 获取的第一个节点的 Value 返回 NULL

NodeList nodes = document.getElementsByTagName("LEVEL2_ID");

System.out.println("Value of 1st node: " + nodes.item(0).getNodeValue());

I have an XML file as follows.

When I use getElementsByTagName("LEVEL2_ID"), I do get a NodeList with Nodes, but those Nodes have NULL values (in other words, getNodeValue() on each result node will return NULL). Why is this? I need to get the contents value of each node, in this case 2000.

XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
    <Date>01/17/2012</Date>
    <LEVEL1>
        <LEVEL1_ID>1000</LEVEL1_ID>

        <LEVEL2>
           <LEVEL2_ID>2000</LEVEL2_ID>
        </LEVEL2>
    </LEVEL1>
</Root>

In Java, printing the Value of the 1st node obtained with getElementsByTagName() returns NULL:

NodeList nodes = document.getElementsByTagName("LEVEL2_ID");

System.out.println("Value of 1st node: " + nodes.item(0).getNodeValue());

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

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

发布评论

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

评论(2

舞袖。长 2025-01-03 16:45:24

这是在规范中定义的。元素节点的 nodeValuenull

nodeValue of type DOMString:此节点的值,取决于其类型;见上表。当定义为null时,设置无效。

如果要获取每个节点的文本内容,则必须迭代所有文本节点后代并连接它们的值。

也就是说,您使用的 API 实现可能提供一种直接检索元素文本内容的方法。例如,PHP 的 DOMNode 有一个 $ textContent 属性。

如果像您的情况一样,该元素的唯一子节点实际上是您想要的文本节点,您可以简单地访问它的值:

element.getFirstChild().getNodeValue()

That is defined in the specification. Element nodes' nodeValue is null.

nodeValue of type DOMString: The value of this node, depending on its type; see the table above. When it is defined to be null, setting it has no effect.

If you want to get the text content of each node, you have to iterate over all text node descendants and concatenate their value.

That said, the API implementation you are using might offer a method to directly retrieve the text content of an element. For example, PHP's DOMNode has a $textContent property.

If, as in your case, the element's only child is actually the text node you want, you can simply access its value:

element.getFirstChild().getNodeValue()
画离情绘悲伤 2025-01-03 16:45:24

如果您有一个元素节点并想要获取其内部文本,请使用 getTextContent(),如下所示:

NodeList nodes = document.getElementsByTagName("LEVEL2_ID");
System.out.println("Value of 1st node: " + nodes.item(0).getTextContent());

If you have an element node and want to get its inner text, use getTextContent() like this:

NodeList nodes = document.getElementsByTagName("LEVEL2_ID");
System.out.println("Value of 1st node: " + nodes.item(0).getTextContent());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文