用于选择不属于某些特定元素的所有子元素的 XPath 表达式

发布于 2024-11-02 08:29:03 字数 627 浏览 0 评论 0原文

给定 XML,

<blockquote>
    <attribution>foo</attribution>
    <para>bar</para>
</blockquote>

我有 XSL 模板

<xsl:template match="dbk:blockquote">
    <blockquote>
        <xsl:apply-templates select="*[not(dbk:attribution)]" />
        <xsl:apply-templates select="dbk:attribution" />
    </blockquote>
</xsl:template>

,其中第一个 apply-templates 应选择 dbk:blockquote 的所有不属于 dbk:attribution< 类型的子元素/代码>。 (这对于将属性移动到底部是必要的。)

但是,它实际上匹配每个节点。为什么?

Given the XML

<blockquote>
    <attribution>foo</attribution>
    <para>bar</para>
</blockquote>

I have the XSL template

<xsl:template match="dbk:blockquote">
    <blockquote>
        <xsl:apply-templates select="*[not(dbk:attribution)]" />
        <xsl:apply-templates select="dbk:attribution" />
    </blockquote>
</xsl:template>

where the first apply-templates should select all child elements of the dbk:blockquote that are not of type dbk:attribution. (This is necessary to move attributions to the bottom.)

However, it in fact matches every node. Why?

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

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

发布评论

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

评论(2

淡水深流 2024-11-09 08:29:03

您想要使用 self 轴:

<xsl:apply-templates select="*[not(self::dbk:attribution)]" />

这会选择本身不是 dbk:attribution 元素的子元素。您的版本选择不包含 dbk:attribution 子元素的子元素。

You want to use the self axis:

<xsl:apply-templates select="*[not(self::dbk:attribution)]" />

This selects child elements that are not themselves a dbk:attribution element. Your version selects child elements that do not contain a dbk:attribution child.

尐偏执 2024-11-09 08:29:03

我不是 xpath 专家。但我认为这应该有效。

<xsl:template match="dbk:blockquote">
    <blockquote>
        <xsl:apply-templates select="*[local-name(.) != 'attribution']" />
        <xsl:apply-templates select="*[local-name(.) = 'attribution']" />
    </blockquote>
</xsl:template>

I am no xpath expert. But I think this should work.

<xsl:template match="dbk:blockquote">
    <blockquote>
        <xsl:apply-templates select="*[local-name(.) != 'attribution']" />
        <xsl:apply-templates select="*[local-name(.) = 'attribution']" />
    </blockquote>
</xsl:template>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文