如何测试节点及其子节点是否为空



如果节点为空,我能测试这样的节点吗?

<Address>
<Street></Street>
<Building></Building>
<Postcode></Postcode>
<Town></Town>
<State></State>
<Country></Country>
</Address>

您可以通过以下方式测试节点及其子节点是否为空:

<xsl:if test="normalize-space(.)=''">All nodes empty: true&#xA;</xsl:if>

或者,您可以通过以下方式测试它是否有空节点:

<xsl:if test="normalize-space(*)=''">Contains an empty node: true&#xA;</xsl:if>

当这个样式表针对您的输入XML:运行时

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="Address">
<xsl:if test="normalize-space(.)=''">All nodes empty: true&#xA;</xsl:if>
<xsl:if test="normalize-space(*)=''">Contains an empty node: true&#xA;</xsl:if>
</xsl:template>
</xsl:stylesheet>

它将产生:

All nodes empty: true
Contains an empty node: true

看看它在行动中。

相关内容

  • 没有找到相关文章

最新更新