xslt 可以读取或跳过标签?

发布于 2024-11-02 11:04:41 字数 594 浏览 0 评论 0原文

我正在为 XML 创建一个 XSLT 文件,其中包含一个标签 ,可能来自 spring 框架。基本上,XML的结构如下:

 <beans:beans>
   <fix>
       <message>
               important content
       </message>   
   </fix>
</beans:beans>

我找不到摆脱 标签的方法,实际上我的相关内容在 下消息 标签。

使用 我能够获得我需要的内容。但是我必须手动删除 标签

有没有办法让 XSLT 跳过或读取 标签?

I'm creating an XSLT file for XML which contains a tag <beans:bean>, probably from spring framework. Basically, the structure of the XML is as follows:

 <beans:beans>
   <fix>
       <message>
               important content
       </message>   
   </fix>
</beans:beans>

I can't find a way to get rid of the <beans:beans> tag, actually the relevant content for me is under the message tag.

Using <xsl:for-each select="fix/message"> I am able to reach the content I need. However I have to remove the <beans:beans> tag manually

Is there a way to make XSLT skip or read the <beans:beans> tag?

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

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

发布评论

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

评论(1

苹果你个爱泡泡 2024-11-09 11:04:41

使用带有覆盖的身份转换可以惯用地解决这个问题:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:beans="http://someuri">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="beans:beans">
        <xsl:apply-templates />
    </xsl:template>
</xsl:stylesheet>

应用于此输入:

<root>
    <beans:beans xmlns:beans="http://someuri">
        <fix>
            <message>
                important content
            </message>
        </fix>
    </beans:beans>
</root>

删除不需要的元素:

<root>
   <fix>
       <message>
               important content
       </message>   
   </fix>
</root>

一些注意事项:

  • 这将复制文件中的所有内容,除了 beans:beans 元素之外,保持
  • 不变>beans 元素有一个命名空间前缀。我添加了一个名称空间 URI 来使此转换起作用。
  • 您的样式表还需要了解名称空间。请注意 xmlns:beans="http://someuri" 的使用。您需要修改它以映射到实际的 beans 命名空间。

This is idiomatically solved using the identity transform with an override:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:beans="http://someuri">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="beans:beans">
        <xsl:apply-templates />
    </xsl:template>
</xsl:stylesheet>

Applied to this input:

<root>
    <beans:beans xmlns:beans="http://someuri">
        <fix>
            <message>
                important content
            </message>
        </fix>
    </beans:beans>
</root>

Removes the unwanted element:

<root>
   <fix>
       <message>
               important content
       </message>   
   </fix>
</root>

Some notes:

  • This copies everything in the file, unchanged, except the beans:beans element
  • Your beans element has a namespace prefix. I have added a namespace URI to make this transformation work.
  • Your stylesheet also needs to be aware of the namespace. Notice the use of xmlns:beans="http://someuri". You'll need to modify this to map to the actual beans namespace.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文