2

这是我第一次发布一个问题,如果我在这里胡言乱语,请提前道歉。

我正在尝试将 CQWP 与 jQuery 选项卡滑块功能放在一起。我要输出的 HTML 应该是 2 UL 的形式。第一个带有 li 锚标记的 #related-ul-id

第二个 ul 的 id 应该与第一个中的列表项相关联。例如

<div id="tabs" class="news">
    <div class="news-pagination">
        <a href="#" id="carouseltext-prev">&laquo; Prev</a>
        <ul id="carouseltext" class="horizontal-text order">
            <li><a href="#tabs-1">System</a></li>
            <li><a href="#tabs-2">School</a></li>
        </ul>
        <a href="#" id="carouseltext-next">&raquo; Next</a>
        <div class="clear">&nbsp;</div>
    </div>
    <ul id="tabs-1" class="feed order">
        <li>title 1</li>
        <li>title 2</li>
     </ul>
    <ul id="tabs-2" class="feed order">
        <li>title 3</li>
    </ul>
</div>

原始 XML 以表单开始

我的 XSL 两次通过 XML 来填充 2 个 ul。第一次它只是在 __begincolumn 和 __begingroup 变量为真时添加一个新的列表项。我剥离了这里的功能,只输出标题。这是 XSL 的精简版

    <xsl:template match="/">
        <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" />
        <xsl:variable name="RowCount" select="count($Rows)" />
        <xsl:variable name="FirstRow" select="1" />
        <xsl:param name="ColNumber" select="1" />

        <xsl:for-each select="$Rows" >
            <xsl:variable name="CurPosition" select="position()" />
        <xsl:variable name="BeginNewsItemsList1" select="string('&lt;ul id=&quot;tabs-')" />
        <xsl:variable name="BeginNewsItemsList2" select="string('&quot;class=&quot;feed order&quot;&gt;')" />
        <xsl:variable name="BeginNewsItemsList" select="concat($BeginNewsItemsList1, $ColNumber, $BeginNewsItemsList2)" />

        <xsl:if test="($CurPosition &gt;= $FirstRow and $CurPosition &lt;= $LastRow)">
            <xsl:variable name="StartNewGroup" select="@__begingroup = 'True'" />
            <xsl:variable name="StartNewColumn" select="@__begincolumn = 'True'" />
            <xsl:when test="$StartNewGroup and $StartNewColumn">
                    <xsl:choose>
                <xsl:when test="$CurPosition = $FirstRow">
                    <xsl:value-of disable-output-escaping="yes" select="$BeginNewsItemsList" />
                </xsl:when>
                <xsl:otherwise>
                    <!-- other instructions -->
                </xsl:otherwise>
                </xsl:choose>
            </xsl:when>
            <xsl:when test="$StartNewGroup">
                <xsl:call-template name="OuterTemplate.CallFooterTemplate"/>
                <xsl:value-of disable-output-escaping="yes" select="concat($EndColumn, $BeginNewsItemsList)" />
            </xsl:when>
            <xsl:otherwise>
            </xsl:otherwise>
            </xsl:if>           
        </xsl:for-each>
    </xsl:template>

<xsl:template name="OuterTemplate.Count">
    <xsl:param name="ColNumber" />
    <xsl:value-of select="$ColNumber + 1" />
</xsl:template>

对于第二个 for-each 循环,我无法设置一个计数器,以便我可以将数字添加到每个新列表 id="tabs-1"、id="tabs-2" 等的 id 末尾.

理论上,我认为我应该在我的 for-each 循环之外设置一个参数,然后在循环中调用一个模板来获取参数值并增加它。这意味着它只会在调用模板时增加。

我不能为此使用 position() ,因为它不符合我想要的值。我尝试关注一些关于使用 xsl 进行递归编程的博客,但我似乎找不到任何有用的东西。我确定我只是写错了 XSL,但我现在有点脑子里转储了。

如果有人能指出我正确的方向,那就太棒了。非常感谢。

4

1 回答 1

1

声明后不能更改变量的值。您可以在表达式中使用它们和/或作为参数传递。因此,您不能明确使用外部变量作为计数器。一种可用的技巧是递归循环,例如:

     <?xml version="1.0"?>

 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:template match="root">
        <HTML>
           <BODY>
                <xsl:call-template name="for">
                    <xsl:with-param name="i" select="1"/>
                    <xsl:with-param name="n" select="5"/>
                </xsl:call-template>
           </BODY>
        </HTML>
     </xsl:template>

 <xsl:template name="for">
    <xsl:param name="i"/>
    <xsl:param name="n"/>
    <xsl:value-of select="$i"/>
    <xsl:if test="$i &lt; $n">
       <xsl:text>, </xsl:text>
       <xsl:call-template name="for">
            <xsl:with-param name="i" select="$i+1"/>
            <xsl:with-param name="n" select="$n"/>
       </xsl:call-template>
    </xsl:if>
</xsl:template>

结果:1、2、3、4、5

于 2012-03-27T10:55:36.283 回答