以下是我正在使用的代码:
<xsl:template match="Row[position() = 1]">
<li style="width: 650px; float: left; list-style: none outside none;">
<ul class="liste1">
<xsl:if test="@Style='NewsCustomTemplate'">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="./@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(./@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(./@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="./@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
<xsl:if test="following-sibling::*[1]">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="following-sibling::*[1]/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(following-sibling::*[1]/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[1]/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="following-sibling::*[1]/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
</xsl:if>
<xsl:if test="following-sibling::*[2]">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="following-sibling::*[2]/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(following-sibling::*[2]/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[2]/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="following-sibling::*[2]/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
</xsl:if>
</xsl:if>
<xsl:if test="@Style='AgendaCustomTemplate'">
</xsl:if>
</ul>
</li>
</xsl:template>
我的代码问题是我几次重复使用几乎完全相同的代码:
我希望有一个通用模板来为节点LOCATIONX执行此部分:
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="LOCATIONX/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(LOCATIONX/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(LOCATIONX/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="LOCATIONX/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
有人知道在XSLT中是否可以这样做吗?或者我是否必须重复我的代码?
答案 0 :(得分:3)
首先摆脱那个disable-output-escaping =“yes”。它可能被那些不知道它意味着什么的人当作魔法仙尘。机会是不需要的,在这种情况下删除它不会造成伤害;如果转换在没有它的情况下不起作用那么设计就会出现严重错误。
至于你的问题,把公共代码放在
中<xsl:template match="Row" mode="m">...</xsl:template>
然后再做
<xsl:template match="Row[position()=1]">
<xsl:apply-templates select="." mode="m"/>
<xsl:apply-templates select="following-sibling::Row[1]" mode="m"/>
<xsl:apply-templates select="following-sibling::Row[2]" mode="m"/>
</xsl:template>
或更简单
<xsl:template match="Row[position()=1]">
<xsl:apply-templates select=".|following-sibling::Row[3 > position()]" mode="m"/>
</xsl:template>