我正在学习xml和XSLT。
我想创建可以显示family.xml文件中所有名称的XSLT文件
我有......
DOC( “family.xml”)// NAME
但是,我不确定在XSLT文件上使用doc函数的语法。
有人可以帮助我吗?
感谢
答案 0 :(得分:1)
让我们说你的filename.xml就像:
<?xml version="1.0"?>
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
获取所有标题:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.0">
<!-- match root documents tag -->
<xsl:template match="/">
<xsl:apply-templates select="document('filename.xml')/bookstore//title/node()" mode="document"/>
</xsl:template>
<xsl:template match="/" mode="document">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>