跳过空XML节点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跳过空XML节点相关的知识,希望对你有一定的参考价值。
<xsl:template name="getValue"> <xsl:param name="tagId"></xsl:param> <xsl:choose> <xsl:when test="normalize-space(//item[@id=$tagId]) != ''"> not empty </xsl:when> <xsl:otherwise> EMPTY </xsl:otherwise> </xsl:choose> Value:<xsl:value-of select="string(//item[@id=$tagId])"/>: </xsl:template>
以上是关于跳过空XML节点的主要内容,如果未能解决你的问题,请参考以下文章