4

是否可以在 XSLT 中执行内联条件(如果则不然)?就像是:

<div id="{if blah then blah else that}"></div>

或一个真实的用例/示例:

<div id="{if (@ID != '') then '@ID' else 'default'}"></div>
4

1 回答 1

6

如评论中所述,该if () then else构造仅在 XSLT/XPpath 2.0 中受支持。

我自己的偏好是使用冗长但可读的:

<xsl:template match="some-node">
    <div> 
        <xsl:attribute name="ID">
            <xsl:choose>
                <xsl:when test="string(@ID)">
                    <xsl:value-of select="@ID"/>
                </xsl:when>
                <xsl:otherwise>default</xsl:otherwise>
            </xsl:choose>
        </xsl:attribute>
    </div>
</xsl:template>

或者更短的:

<xsl:template match="some-node">
    <div ID="{@ID}"> 
        <xsl:if test="not(string(@ID))">
            <xsl:attribute name="ID">default</xsl:attribute>
        </xsl:if>
    </div>
</xsl:template>

但是,如果您喜欢神秘代码,您可能会喜欢:

<xsl:template match="some-node">
    <div ID="{substring(concat('default', @ID), 1 + 7 * boolean(string(@ID)))}"> 
    </div>
</xsl:template>

或者:

<xsl:template match="some-node">
    <div ID="{concat(@ID, substring('default', 1, 7 * not(string(@ID))))}"> 
    </div>
</xsl:template>
于 2015-05-29T16:19:04.400 回答