对于给定的XSL和XML,我只获得一行输出。由于for-each
有两个序列,我期望输出2行?
我错过了什么?
使用XSL:
<?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">
<xsl:output indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:variable name="pat" as="item()*">
<xsl:sequence select="/myroot[1]/mychild[1]/test[1]/@testing"/>
<xsl:sequence select="/myroot[1]/mychild[2]/comment[1]"/>
</xsl:variable>
<xsl:for-each select="$pat">
<xsl:choose>
<xsl:when test=". instance of element()">
<xsl:text> Node: </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>Atomic value: </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="."/>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
使用的XML:
<?xml version="1.0" encoding="Windows-1252" standalone="no"?>
<myroot >
<mychild id="123">
<fruit>apple</fruit>
<test hello="world" testing="removed" brackets="angled" question="answers"/>
<comment>This is a comment</comment>
</mychild>
<mychild id="789">
<fruit>orange</fruit>
<test brackets="round" hello="greeting">
<number>111</number>
</test>
<!-- this is a test comment -->
<dates>
<modified>123</modified>
<created>880</created>
<accessed>44</accessed>
</dates>
</mychild>
<mychild id="456">
<fruit>banana</fruit>
<comment>This will be removed</comment>
</mychild>
</myroot>
输出如下所示。我收到的只是一行 为什么第二个序列没有显示任何内容?
<?xml version="1.0" encoding="UTF-8"?>
原子值:已删除
我希望它能显示如下所示的内容
<?xml version="1.0" encoding="UTF-8"?>
原子值:删除
节点:这是评论