gpt4 book ai didi

html - 获取 sibling 之后的 xpath 以使用具有其值的模板

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:54 25 4
gpt4 key购买 nike

我有以下 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">…</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">…</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

我无法为 following-sibling::*[1] 使用 $SafeLinkUrl,因为它适用于当前元素而不是直接兄弟。我如何使该变量也适用于 sibling ??

最佳答案

使用:

 <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]

关于html - 获取 sibling 之后的 xpath 以使用具有其值的模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14057476/

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