需要一些帮助。在umbraco我有这样的树
-First
- page 1
- page 2
- page 3
- page 4
- page 5
- page 6
- page 7
- page 8
- page 9
- page 10
- page 11
- page 12...
循环我过滤所有页面。 所以我只将xslt应用于第4,7,10页 position()会给我4,7,10 我如何计算我走过的页数? (在这个例子中3) 这是我的xslt:
<xsl:param name="currentPage"/>
<xsl:variable name="root" select="$currentPage/ancestor-or-self::* [@isDoc][last()]"/>
<xsl:variable name="articles" select="$root/descendant-or-self::* [@isDoc][@level=2]"/>
<xsl:template match="/">
<xsl:for-each select="$articles">
<xsl:if test="./* [@isDoc and string(umbracoNaviHide)!='1' and local-name(current())='myfilteredpage']">
...some html construction...
</xsl:if>
</xsl:for-each>
</xsl:template>
感谢您的帮助。 本杰明
PS:发现那些帮我建立分页的链接,但我的计数器没有解决
答案 0 :(得分:0)
你可以像这样计算你走过的总页数:
count($articles/* [@isDoc and string(umbracoNaviHide)!='1' and local-name(current())='myfilteredpage'])
如果你想在你的循环中有当前的'count',你应该改变你的xsl:
<xsl:param name="currentPage"/>
<xsl:variable name="root" select="$currentPage/ancestor-or-self::* [@isDoc][last()]"/>
<xsl:variable name="articles" select="$root/descendant-or-self::* [@isDoc][@level=2]"/>
<xsl:template match="/">
<xsl:variable name="articlesToLoop" select="$articles//* [@isDoc and string(umbracoNaviHide)!='1' and local-name(current())='myfilteredpage']" />
<xsl:for-each select="$articlesToLoop">
Current count: <xsl:value-of select="position()" />
- <xsl:value-of select="@nodeName" />
</xsl:for-each>
</xsl:template>
答案 1 :(得分:0)
我已经尝试过你给的计数器......当需要显示2时,计数器显示0。 我发现我的xsl的另一个行为尚不清楚。只有当我的页面至少有1个孩子发布时才会显示该页面。 这是我的xslt代码
<xsl:param name="currentPage"/>
<xsl:variable name="root" select="$currentPage/ancestor-or-self::* [@isDoc][last()]"/>
<xsl:variable name="articles" select="$root/descendant::* [@isDoc][@level=2]"/>
<xsl:variable name="NumberOfCharactersToShow" select="number(400)"/>
<xsl:template match="/">
<!-- start writing XSLT -->
<xsl:variable name="counter" select="count($articles//* [@isDoc and string(umbracoNaviHide)!='1' and local-name(current())='Article'])" />
<xsl:value-of select="$counter" />
<xsl:for-each select="$articles">
<xsl:variable name="article" select="* [@isDoc and string(umbracoNaviHide)!='1' and local-name(current())='Article']" />
<xsl:if test="$article">
<xsl:call-template name="article" />
<!--<xsl:for-each select="current()/descendant::* [@isDoc]">
<xsl:call-template name="article" />
</xsl:for-each>-->
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template name="article">
<xsl:variable name="text" select="umbraco.library:StripHtml(umbraco.library:TruncateString(bodyText,$NumberOfCharactersToShow,'...'))"/>
<!--article-->
<div class="article border border-radius border-shadow">
<div class="atitle">
<p><xsl:value-of select="title" /></p>
</div>
<div class="atext">
<p><xsl:value-of select="$text" /></p>
</div>
</div>
</xsl:template>
尝试解释。这是我的示例树
-first page
-page
-article1 (published)
-article2 (unpublished)
-article3 (unpublished)
-page
-page
-page
-article4 (published)
-page
-article5 (published)
-article6 (published)
-article7 (unpublished)
-page...
实际上我的代码只会创建article5(子项(文章6,7)创建在xslt注释中) 但正如你所看到的那样,没有创建第1条和第4条......我不明白为什么......
感谢您的帮助。 本杰明