我知道这似乎是一个愚蠢/新手的问题,但我对XSLT 还很陌生(尽管我开始接触它并了解它的功能)。
什么时候适合使用xsl:if什么时候适合使用xsl:choose/xsl:when?
当我想要一个“其他”选项时,我一直在使用选择/何时/否则。这个对吗?
例如,我有一些我正在做的地方:
<xsl:choose>
<xsl:when test="count(entry) != 0">
put positive outcome here
</xsl:when>
<xsl:otherwise>
put something else here
</xsl:otherwise>
</xsl:choose>
xsl:if 会更好吗?
感谢您的输入。