1

我有以下 XSLT :

     <xsl:if test="$CurPos mod 2 =1">
         <li style="width:604px;"> 
           <div class="content-left" style="width:300px; height:290px;float:left;">
                <xsl:if test="string-length($SafeImageUrl) != 0">
                  <div class="images-area-left">
                    <a href="{$SafeLinkUrl}" target="{$LinkTarget}">
                      <img class="image" src="{$SafeImageUrl}" alt="{@ImageUrlAltText}" />
                    </a>
                    <div class="Heading-desc">
                        <span class="NewsHeading"><h4><xsl:value-of select="@Title"/></h4></span>
                        <span class="Desc">
                            <xsl:value-of select="substring(@Comments,0,200)"/>
                            <xsl:if test="string-length(@Comments) &gt; 200">…&lt;/xsl:if>
<a href="{$SafeLinkUrl}" class="ReadMore"> Read More</a>    
                        </span>
                    </div>
                </div>
               </xsl:if>            
            </div>

            <div class="content-right" style="float:right; width:300px; height:290px;"> 
                <xsl:value-of select="following-sibling::*[1]/@PublishingRollupImage" disable-output-escaping="yes" />
                <span class="NewsHeading"><h4><xsl:value-of select="following-sibling::*[1]/@Title"/></h4></span>
                <span class="Desc" style="display:block; width:280px;"><xsl:value-of select="substring(following-sibling::*[1]/@Comments,0,200)"/>
                 <xsl:if test="string-length(following-sibling::*[1]/@Comments) &gt; 200">…&lt;/xsl:if><a href="{$SafeLinkUrl}" class="ReadMore"> Read More</a>    
                </span>
            </div>
         </li>
     </xsl:if>  

有一个变量 $SafeLinkUrl 来自另一个模板,用于获取当前行的页面 URL。由于我仍在当前节点上时正在关注兄弟姐妹,因此我无法获取以下兄弟姐妹的 URL。

  <xsl:variable name="SafeLinkUrl">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
      <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
  </xsl:variable>

============> 指向这个模板

<xsl:template name="OuterTemplate.GetSafeLink">
    <xsl:param name="UrlColumnName"/>
    <xsl:if test="$UseCopyUtil = 'True'">
        <xsl:value-of select="concat($RootSiteRef,'/_layouts/CopyUtil.aspx?Use=id&amp;Action=dispform&amp;ItemId=',@ID,'&amp;ListId=',@ListId,'&amp;WebId=',@WebId,'&amp;SiteId=',$SiteId,'&amp;Source=',$Source)"/>
    </xsl:if>
    <xsl:if test="$UseCopyUtil != 'True'">
        <xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

这有一个调用 ====>

<xsl:template name="OuterTemplate.GetSafeStaticUrl">
    <xsl:param name="UrlColumnName"/>
    <xsl:variable name="Url">
        <xsl:call-template name="OuterTemplate.FormatColumnIntoUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:variable>
    <xsl:value-of select="cmswrt:EnsureIsAllowedProtocol($Url)"/>
</xsl:template>

它再次调用另一个模板,不断=====>

<xsl:template name="OuterTemplate.FormatColumnIntoUrl">
    <xsl:param name="UrlColumnName"/>
    <xsl:variable name="Value" select="@*[name()=$UrlColumnName]"/>
    <xsl:if test="contains($DataColumnTypes,concat(';',$UrlColumnName,',URL;'))">
        <xsl:call-template name="OuterTemplate.FormatValueIntoUrl">
            <xsl:with-param name="Value" select="$Value"/>
        </xsl:call-template>
    </xsl:if>
    <xsl:if test="not(contains($DataColumnTypes,concat(';',$UrlColumnName,',URL;')))">
        <xsl:value-of select="$Value"/>
    </xsl:if>
</xsl:template>

这是实际的 XML:https ://gist.github.com/4380967

容器的 XSL:https ://gist.github.com/4389989

单个行的 XSL:https ://gist.github.com/4389997

我无法将 $SafeLinkUrl 用于以下兄弟::* [1],因为它适用于当前项目而不是直接兄弟。如何使变量也适用于兄弟姐妹?

4

1 回答 1

0

使用

 <xsl:variable name="SafeLinkUrl">
   <xsl:for-each select="following-sibling::*[1]">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
      <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
   </xsl:for-each>
  </xsl:variable>

或者更好的是,在模板中添加第二个参数:

<xsl:template name="OuterTemplate.GetSafeLink">
    <xsl:param name="UrlColumnName"/>
    <xsl:param name="pContext" select="."/>

    <xsl:if test="$UseCopyUtil = 'True'">
        <xsl:value-of select="concat($RootSiteRef,'/_layouts/CopyUtil.aspx?Use=id&amp;Action=dispform&amp;ItemId=', $pContext/@ID,'&amp;ListId=',$pContext/@ListId,'&amp;WebId=',$pContext/@WebId,'&amp;SiteId=',$pContext/$SiteId,'&amp;Source=',$Source)"/>
    </xsl:if>
    <xsl:if test="$UseCopyUtil != 'True'">
        <xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

对其他两个模板执行此操作。$pContext在调用两个内部模板中的任何一个时指定参数。

然后调用最外层的模板,将$pContext参数指定为following-sibling::*[1].

于 2012-12-27T17:57:02.120 回答