gpt4 book ai didi

xslt - 检查 XSLT 中的字符串是否为 Null 或空

转载 作者:行者123 更新时间:2023-12-03 04:00:13 26 4
gpt4 key购买 nike

如何使用 XSL 检查值是否为 null 或为空?

例如,如果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>

最佳答案

test="categoryName != ''"

编辑:在我看来,这涵盖了从问题中推断出的“[not] null orempty”最可能的解释,包括它的伪代码和我自己早期使用 XSLT 的经验。即,“以下 Java 的等价物是什么?”:

// Equivalent Java, NOT XSLT
!(categoryName == null || categoryName.equals(""))

有关更多详细信息,例如,明确识别 null 与空,请参阅 johnvey's answer below和/或 the XSLT 'fiddle'我改编自该答案,其中包括迈克尔·凯评论中的选项以及第六种可能的解释。

关于xslt - 检查 XSLT 中的字符串是否为 Null 或空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/825831/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com