属性に基づいて値を出力する方法はありますか?
私は XSLT に非常に慣れていないので、明らかな場合はご容赦ください :)
次のような XML があります。
<Columns>
<Column DataType="String">Id</Column>
<Column DataType="String">FirstName</Column>
<Column DataType="String">LastName</Column>
<Column DataType="String">TheDescription</Column>
</Columns>
<Rows>
<Row>
<Value Column="Id">1</Value>
<Value Column="FirstName">John</Value>
<Value Column="LastName">Doe</Value>
<Value Column="TheDescription">Some description about John Doe</Value>
</Row>
<Row>
<Value Column="Id">2</Value>
<Value Column="FirstName">Jane</Value>
<Value Column="LastName">Doe</Value>
<Value Column="TheDescription">Some description about Jane Doe</Value>
</Row>
</Rows>
私は次のことを試みました:
<xsl:template match="Template">
<xsl:apply-templates select="loop[@name='Rows']" />
</xsl:template>
<xsl:template match="loop[@name='Rows']">
<table border="1" cellpadding="2" cellspacing="2">
<tr>
<xsl:apply-templates select="../loop[@name='Columns']/item" mode="header" />
</tr>
<xsl:apply-templates select="item" mode="row" />
</table>
</xsl:template>
<xsl:template match="item" mode="row">
<tr>
<xsl:apply-templates select="loop[@name='Row']" />
</tr>
</xsl:template>
<xsl:template match="loop[@name='Row']">
<xsl:param name="Column" />
<xsl:if test="$Column = FirstName">
<td>Output the value of FirstName here!</td>
</xsl:if>
</xsl:template>
最後の 6 行で FirstName が出力されます。どうすればそれができますか?