1

このコードブロックを理解する方法、

<xsl:for-each select="testsuite">
  <xsl:apply-templates select="."/>
</xsl:for-each>

以下で使用し、

<xsl:template match="testsuites">
    <table border="1" width="100%">
    <tr bgcolor="#9acd32">
      <th align="left">module</th>
      <th align="left">tests</th>
      <th align="left">time</th>
    </tr>
    <tr>
      <td><xsl:value-of select="@name"/></td>
      <td><xsl:value-of select="@tests"/></td>
      <td><xsl:value-of select="@time"/></td>
    </tr>
    </table>
    <br/>

    <xsl:for-each select="testsuite">
      <xsl:apply-templates select="."/>
    </xsl:for-each>
</xsl:template>

<xsl:apply-templates/>上記のコードによると、適用されるテンプレートは何ですか? この質問について何か手掛かりを教えてもらえますか?

私はあなたの助けを高く評価します。

4

2 に答える 2