最佳答案
如何用XSL检查值是否为空?
例如,如果categoryName
为空?我使用的是在选择结构。
例如:
<xsl:choose>
<xsl:when test="categoryName !=null">
<xsl:value-of select="categoryName " />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="other" />
</xsl:otherwise>
</xsl:choose>