是否有更好的方法来查找XML节点是否存在(在XSLT中)而不是使用:
<xsl:choose>
<xsl:when test="...........">body node exists</xsl:when>
<xsl:otherwise>body node missing</xsl:otherwise>
</xsl:choose>
答案 0 :(得分:10)
xsl:choose
更好地定义 ; xsl:choose
很好地涵盖了条件表达式。 更好要求根据某些标准进行衡量,而不提供任何标准。不过,这里有一些您可以根据需要评估的替代方案:
<xsl:if test="/path/to/node">node exists</xsl:if>
<xsl:if test="not(/path/to/node)">node missing</xsl:if>
<xsl:value-of select="if (/path/to/node) then 'node exists' else 'node missing'"/>