关于 XSL 模板匹配的基本问题

发布于 2024-10-01 16:03:33 字数 1019 浏览 7 评论 0原文

我刚刚开始修改 XML,我有一个问题。

XML 文件:

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl"?>
<bucket version="Root Version 1A2B3C">
</bucket>

XSL 文件

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
  <xsl:template match="bucket"> 
    <html>
       <body>
        <h3>
          <xsl:value-of select="@version"/>
        </h3>
      </body>
    </html>
  </xsl:template>
 </xsl:stylesheet>

我对 XSL 的第三行有疑问。 如果我使用

- Root Version 1A2B3C 会被打印

-

没有打印任何内容 - 我认为 "/" 表示根。 我的理解是它应该打印“1.0”()或“Root Version 1A2B3C”(bucket version)

请告诉我为什么不是在职的。

谢谢

I've just begun to tinker with XML, and I have a question.

XML File:

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl"?>
<bucket version="Root Version 1A2B3C">
</bucket>

XSL FILE

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
  <xsl:template match="bucket"> 
    <html>
       <body>
        <h3>
          <xsl:value-of select="@version"/>
        </h3>
      </body>
    </html>
  </xsl:template>
 </xsl:stylesheet>

I have questions regarding the third line of the XSL.
If I use

<xsl:template match="bucket"> - Root Version 1A2B3C is printed

<xsl:template match="/"> -

nothing is printed - I thought "/" means the root.
My understanding is that it should either print "1.0" (<?xml version) or "Root Version 1A2B3C" (bucket version)

Please let me know why it is not working.

Thanks

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

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

发布评论

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

评论(2

蝶舞 2024-10-08 16:03:33

/ 表示 document-node()——即整个文档

在提供的 XML 中,bucket 元素是文档的顶部元素。它不是根节点。

顶部元素bucket仍然可以有兄弟元素,例如处理指令或注释节点。顶部元素及其兄弟元素都有一个父节点,这就是 / ——文档的根节点。

/ denotes the document-node() -- that is the whole document.

In the provided XML the bucket element is the top element of the document. It isn't the root node.

The top element bucket can still have siblings, such as processing instructions or comment nodes. The top element together with its siblings all have a single parent and this is / -- the root node of the document.

纵情客 2024-10-08 16:03:33

来自 http://www.w3.org/TR/xpath/#root-node< /a>

根节点是树的根。
根节点不会出现,除非
树的根。元素节点
因为文档元素是以下元素的子元素
根节点。根节点还有
当孩子们处理指令和
用于处理的注释节点
发生的指示和评论
在序言和结束之后
文档元素。

永远记住这一点(来自 http://www.w3.org/TR/xpath/#部分-简介):

XPath 对抽象进行操作,
XML 文档的逻辑结构,
而不是其表面​​语法。

因此,文档根 / 表示整个文档的“逻辑”根。

From http://www.w3.org/TR/xpath/#root-node

The root node is the root of the tree.
A root node does not occur except as
the root of the tree. The element node
for the document element is a child of
the root node. The root node also has
as children processing instruction and
comment nodes for processing
instructions and comments that occur
in the prolog and after the end of the
document element.

Always remember that (from http://www.w3.org/TR/xpath/#section-Introduction):

XPath operates on the abstract,
logical structure of an XML document,
rather than its surface syntax.

So, document root / means the "logical" root of the whole document.

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