关于 XSL 模板匹配的基本问题
我刚刚开始修改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
/
表示 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.来自 http://www.w3.org/TR/xpath/#root-node< /a>
永远记住这一点(来自 http://www.w3.org/TR/xpath/#部分-简介):
因此,文档根
/
表示整个文档的“逻辑”根。From http://www.w3.org/TR/xpath/#root-node
Always remember that (from http://www.w3.org/TR/xpath/#section-Introduction):
So, document root
/
means the "logical" root of the whole document.