对 XLST 中的节点进行排序
此代码选择节点,我想要处理...:
<xsl:variable name="rootTextpageNode"
select="$currentPage/ancestor-or-self::node [@level = 2 and
@nodeTypeAlias = 'CWS_Textpage']" />
如何在其中放置排序/排序依据,以便首先显示具有较新的createdDate的项目?
我正在使用 CWS 入门工具包,并且需要更改 SubNavi.xslt 中显示的项目的顺序
This code selects the nodes, I want to work on...:
<xsl:variable name="rootTextpageNode"
select="$currentPage/ancestor-or-self::node [@level = 2 and
@nodeTypeAlias = 'CWS_Textpage']" />
How can I put a sort/orderby in there, so items with newer createdDate are displayed first?
I'm using the CWS starter kit, and need to change the order of items displayed in SubNavi.xslt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 for-each 之后的第一行中进行排序,如下所示:
You can do a sort in the first line after a for-each, like so:
不确定是否可以为此变量分配添加排序 - 通常,您在应用模板或执行 foreach 时进行排序:
或
参见 排序 XSLT 和 在哪里放置排序信息
Marc
Not sure if you can add sorting to this variable assignment - typically, you sort either when you apply a template, or when you do a foreach:
or
See Sorting XSLT and Where to put the Sort information
Marc