与えられたXSLとXMLに対して、出力は1行しか得られません。 for-each
には2つのシーケンスがあるので、2行の出力が必要ですか?
私は何が欠けていますか?XSLT:なぜ<for-each>は二度反復されません
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>
出力を以下に示します。私が受け取ったのは1行だけです。
2番目のシーケンスに何も表示されなかったのはなぜですか?
<?xml version="1.0" encoding="UTF-8"?>
アトミック値:
ノードを削除:だけありますので、これはコメント
にあなたの質問は、重要なタグがありませんでした。 ''と 'instance of'を使用しているので、私はXSLT-2.0タグを追加しました。今はまったく新しい質問です。 –
zx485