1

我必须处理我不知道节点名称的 XML 文件。我所知道的是不同文件之间的结构是相同的

结构将是上述一个

<root>
    <node1>
        <node2>
        </node2>
    </node2>
</root>

我必须制作一个 XSLT 文件来构建一个显示节点内容的 HTML 页面。

现在我有这段代码

<xsl:template match="/">
<html>
  <head>
    <link rel="stylesheet" type="text/css" href="employe.css"/>
  </head>
  <body>
    <table>
      <tr>
        <th>ID Source</th>
        <th>Nom</th>
        <th>Prénom</th>
        <th>Age</th>
        <th>Adresse</th>
        <th>Code Postal</th>
        <th>Ville</th>
        <th>Telephone</th>
        <th>Poste</th>
      </tr>
      <xsl:apply-templates/>
    </table>
  </body>
</html>
</xsl:template>

<xsl:template match="child::*">
    <tr>
        <xsl:apply-templates/>
    </tr>
</xsl:template>

<xsl:template match="">
    <td>
        <xsl:value-of select="."/>
    </td>
</xsl:template>

我成功选择了第一级和第二级节点,但不知道如何选择第三级。

感谢帮助

4

1 回答 1

2

您可以尝试更改match="/"tomatch="/*"并添加这两个模板:

<xsl:template match="*[*]">
    <tr>
        <xsl:apply-templates/>
    </tr>
</xsl:template>

<xsl:template match="*[not(*)]">
    <td><xsl:value-of select="."/></td>
</xsl:template>
于 2013-04-08T18:19:45.027 回答