処理された現在の要素の数を反映するxsl:for-eachループ内でカウンターを取得する方法。
たとえば、私のソースXMLは
<books>
<book>
<title>The Unbearable Lightness of Being </title>
</book>
<book>
<title>Narcissus and Goldmund</title>
</book>
<book>
<title>Choke</title>
</book>
</books>
私が取得したいのは:
<newBooks>
<newBook>
<countNo>1</countNo>
<title>The Unbearable Lightness of Being </title>
</newBook>
<newBook>
<countNo>2</countNo>
<title>Narcissus and Goldmund</title>
</newBook>
<newBook>
<countNo>3</countNo>
<title>Choke</title>
</newBook>
</newBooks>
変更するXSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<newBooks>
<xsl:for-each select="books/book">
<newBook>
<countNo>???</countNo>
<title>
<xsl:value-of select="title"/>
</title>
</newBook>
</xsl:for-each>
</newBooks>
</xsl:template>
</xsl:stylesheet>
したがって、疑問は???の代わりに何を置くかです。標準的なキーワードはありますか、それともループ内で変数を宣言してインクリメントする必要がありますか?
質問はかなり長いので、おそらく1行または1つのWordの回答を期待する必要があります。
position()
。例えば。:
<countNo><xsl:value-of select="position()" /></countNo>
???の場所に<xsl:number format="1. "/><xsl:value-of select="."/><xsl:text>
を挿入してみてください。
「1」に注意してください-これは数値形式です。詳細: ここ
試してください:
<xsl:value-of select="count(preceding-sibling::*) + 1" />
編集-脳がフリーズしたため、position()の方が簡単です!
Position()で条件ステートメントを実行することもできます。これは、多くのシナリオで非常に役立ちます。
例えば.
<xsl:if test="(position( )) = 1">
//Show header only once
</xsl:if>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<newBooks>
<xsl:for-each select="books/book">
<newBook>
<countNo><xsl:value-of select="position()"/></countNo>
<title>
<xsl:value-of select="title"/>
</title>
</newBook>
</xsl:for-each>
</newBooks>
</xsl:template>
</xsl:stylesheet>