-1

属性に基づいて値を出力する方法はありますか?
私は 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 が出力されます。どうすればそれができますか?

4

1 に答える 1

0

次のようなものが必要だと思います:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html" encoding="iso-8859-1" indent="yes"/>
    <xsl:template match="/*">
        <table>
            <tr>
                <xsl:for-each select="Columns/Column">
                    <th><xsl:value-of select="." /></th>
                </xsl:for-each>
            </tr>
            <xsl:for-each select="Rows/Row">
                <tr>
                    <xsl:for-each select="Value">
                        <td>
                            <xsl:choose>
                                <xsl:when test="@Column = 'FirstName'">
                                    <b><xsl:value-of select="." /></b>
                                </xsl:when>
                                <xsl:when test="@Column = 'LastName'">
                                    <i><xsl:value-of select="." /></i>
                                </xsl:when>
                                <xsl:otherwise>
                                    <xsl:value-of select="." />
                                </xsl:otherwise>
                            </xsl:choose>
                        </td>
                    </xsl:for-each>
                </tr>
            </xsl:for-each>
        </table>
    </xsl:template>
</xsl:stylesheet>
于 2013-06-19T01:03:17.567 に答える