input:
firstdto:
- 链接:google.com
- 名称:谷歌
seconddto
- 链接:yahoo.com
- 名称:雅虎
<sites>
<firstdto>
<link>google.com</link>
<name>google</name>
</firstdto>
<seconddto>
<link>yahoo.com</link>
<name>yahoo</name>
</seconddto>
</sites>
期望输出:
google.com
yahoo.com
google
<body>
<link>google.com</link>
<link>yahoo.com</link>
<name>google</name>
</body>
输出电流:
google.com
google.com
google
注意:我只想在firstdto
中导入seconddto
函数。因为我想在第一属性中使用seconddto
属性。但我做不到。它仍然得到链接从firstdto
,即使我匹配我的模板seconddto
。
<xsl:stylesheet>
<Xsl:template match="/">
<head>
<style>
.....
</style>
</head>
<body>
<xsl:apply-templates select="firstdto"/>
<xsl:apply-templates select="seconddto"/>
</body>
</xsl:template>
<xsl:template match="firstdto">
<body>
<xsl:value-of select="link"/>
<xsl:template match="seconddto">
<body>
<xsl:value-of select="link"/>
</body>
</xsl:template>
<xsl:value-of select="name">
</body>
</xsl:template>
我只想在
firstdto
中导入seconddto
函数。因为我想在第一属性中使用seconddto
属性。
如果你想在firstdto
中使用seconddto
的值,那么你可以试试:
<xsl:template match="/sites">
<html>
<head>
<style>.....</style>
</head>
<body>
<xsl:apply-templates select="firstdto"/>
</body>
</html>
</xsl:template>
<xsl:template match="firstdto">
<xsl:copy-of select="link"/>
<xsl:copy-of select="../seconddto/link"/><!-- to use/copy value from other -->
<xsl:copy-of select="name"/>
</xsl:template>
得到如下输出:
<html>
<head>
<style>.....</style>
</head>
<body>
<link>google.com</link>
<link>yahoo.com</link>
<name>google</name>
</body>
</html>