在 umbraco 中按 id 选择节点集

发布于 2024-07-24 22:52:53 字数 206 浏览 8 评论 0原文

umbraco 中是否有比这更直接的方法来根据 ID 列表迭代节点?

$currentPage/ancestor-or-self::root/descendant::node[contains($idList, @id)]

我只是好奇。 从 currentPage 节点向上遍历树以找到根,然后再向下遍历,这似乎很不恰当。

Is there a more direct way in umbraco to iterate nodes based on a list of IDs than this?

$currentPage/ancestor-or-self::root/descendant::node[contains($idList, @id)]

I'm just curious. It seems akward to traverse up the tree from the currentPage node to find the root before traversing back down.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾城花音 2024-07-31 22:52:53

您可以使用 @path 属性,其中包含节点祖先 ID 的 csv 列表。 然后只需抓住第一个或任何一个感兴趣的。

另一种技术可能是使用 @level 在树中特定深度的祖先中选择一个节点。

目前不在我的电脑前,当我在电脑前时,我会更新更多细节。

You could use the @path attribute which contains a csv list of the nodes ancestor ids. Then just grab the first one or whichever one is of interest.

Another technique could be to use @level to select a node in the ancestors at a particular depth in the tree.

Not in front of my computer at the moment will update with more detail when I am.

世界如花海般美丽 2024-07-31 22:52:53

在您感兴趣的节点上定义 xsl:key,然后使用 key() 函数检索这些节点,可能会更高效、更容易。

<xsl:key name="node-ids" match="node" use="id"/>
<!-- put the "at" sign in front of "id",
  a blockquote is generated when I try it -->
<xsl:for-each select="$currentPage">
  <xsl:apply-templates select="key( 'node-by-id', $idList)"/>
</xsl:for-each>

请参阅: key() 函数(规范)。 请注意第二个参数可能是节点集类型。 如果您的 $idList 是逗号分隔的字符串,您可能需要更改为节点集。

It would probably be both more efficient and easier to define an xsl:key on the nodes you're interested in and then retrieve those using the key() function.

<xsl:key name="node-ids" match="node" use="id"/>
<!-- put the "at" sign in front of "id",
  a blockquote is generated when I try it -->
<xsl:for-each select="$currentPage">
  <xsl:apply-templates select="key( 'node-by-id', $idList)"/>
</xsl:for-each>

See: key() function (spec). Note how the second argument may be of type node-set. If your $idList is a comma-separated string, you might want to change to node-set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文