IMT*_*Man 2 xslt sharepoint dataviewwebpart xslt-1.0 sharepoint-2010
是否可以在XSLT中执行内联条件(如果是其他的话)?就像是:
<div id="{if blah then blah else that}"></div>
Run Code Online (Sandbox Code Playgroud)
或者一个真实的用例/示例:
<div id="{if (@ID != '') then '@ID' else 'default'}"></div>
Run Code Online (Sandbox Code Playgroud)
如注释中所述,该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>
Run Code Online (Sandbox Code Playgroud)
或者更短:
<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>
Run Code Online (Sandbox Code Playgroud)
但是,如果你遇到了神秘的代码,你可能会喜欢:
<xsl:template match="some-node">
<div ID="{substring(concat('default', @ID), 1 + 7 * boolean(string(@ID)))}">
</div>
</xsl:template>
Run Code Online (Sandbox Code Playgroud)
要么:
<xsl:template match="some-node">
<div ID="{concat(@ID, substring('default', 1, 7 * not(string(@ID))))}">
</div>
</xsl:template>
Run Code Online (Sandbox Code Playgroud)