我有一个XML文件,如下所示,我想用xslt转换它。
<?xml version="1.0" encoding="utf-8"?>
<root>
<s1 name="kfb" />
<s1 name="kfb" />
<s1 name="kfb" />
<s1 name="kfb" />
<s1 name="kfb" />
<s1 name="kfb" />
<summary>
<r1 value="1" />
<r1 value="5" />
<r1 value="c" />
<r1 value="h" />
<r1 value="3" />
<r1 value="1" />
</summary>
</root>
我想要实现的是:当执行for-each的每个“s1”元素时,我想根据索引/位置(“s1”元素计数)得到相应的“r1”的“值”attbute值等于“r1”)。我写的xslt如下,但它不起作用,任何人都可以提供帮助吗?谢谢。
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="html" indent="yes"/>
<xsl:template mode="getr1" match="summary" >
<xsl:param name="index"/>
<xsl:value-of select="r1[$index][@value]"/>
</xsl:template>
<xsl:template match="/">
<html>
<body>
<ul>
<xsl:for-each select="root/s1">
<xsl:variable name="i" select="position()"/>
<li>
<xsl:value-of select ="@name"/>
:
<!--<xsl:apply-templates mode="getr1" select="/root/summary">
<xsl:with-param name="index" select="$i" />
</xsl:apply-templates>-->
<!--I want to get the corresponding r1's value according to the index -->
<!-- but above code is not work.-->
</li>
</xsl:for-each>
</ul>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:0)
<xsl:template match="root">
<html>
<body>
<ul>
<xsl:apply-templates select="s1" />
</ul>
</body>
</html>
</xsl:template>
<xsl:template match="s1">
<!-- remember current position -->
<xsl:variable name="myPos" select="position()" />
<li>
<xsl:text>Name: </xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>Value: </xsl:text>
<!-- use current position to pull out the correct <r1> -->
<xsl:value-of select="following-sibling::summary[1]/r1[$myPos]/@value"/>
<!-- if there is only ever one <summary> in your XML, you can also do -->
<xsl:value-of select="/root/summary/r1[$myPos]/@value"/>
</li>
</xsl:template>
答案 1 :(得分:0)
问题在于getr1
模板
您使用<xsl:value-of select="r1[$index][@value]"/>
访问了value属性,但应该是<xsl:value-of select="r1[$index]/@value"/>