XSL转换 - XML数据到HTML表

时间:2018-03-01 18:47:11

标签: html xml xslt xslt-2.0

有没有办法如何为这种类型创建一个XSL样式表,如下图所示,为HTML表格输出XML文档?问题是,生成的数据是随机存储在XML文档中的,所以我不知道如何为它编写样式表。你能帮帮我吗?

非常感谢你。

这是一个带有随机排序数据的XML文档(Memory,CPU0,CPU1,CPU2)。这个数据有两个时间(时间= 1,时间= 14)。

 <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <sample time="14" label="cpu_0">
            <value>22</value>
        </sample>
        <sample time="14" label="cpu_2">
            <value>6</value>
        </sample>
        <sample time="1" label="cpu_2">
            <value>4</value>
        </sample>
        <sample time="14" label="memory">
            <value>97</value>
        </sample>
        <sample time="1" label="cpu_0">
            <value>28</value>
        </sample>
        <sample time="14" label="cpu_1">
            <value>52</value>
        </sample>
        <sample time="1" label="memory">
            <value>55</value>
        </sample>
        <sample time="1" label="cpu_1">
            <value>21</value>
        </sample>
    </root>

这是想要的HTML表输出。

Wanted output HTML table

1 个答案:

答案 0 :(得分:1)

您应该可以通过以下方式轻松完成此任务:

  1. track分组(使用xsl:for-each-group)。
  2. 跟踪需要输出的列。
  3. 示例...

    XSLT 2.0

    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:output indent="yes"/>
      <xsl:strip-space elements="*"/>
    
      <!--Keep track of all CPU columns.-->
      <xsl:variable name="cols" as="item()*">
        <xsl:variable name="init" 
          select="distinct-values(//sample[starts-with(@label,'cpu')]/@label)"/>
        <xsl:perform-sort select="$init">
          <xsl:sort order="ascending" data-type="text"/>
        </xsl:perform-sort>
      </xsl:variable>
    
      <xsl:template match="/*">
        <html>
          <body>
            <table>
              <thead>
                <tr>
                  <th>Time</th>
                  <xsl:for-each select="$cols">
                    <th><xsl:value-of select="upper-case(replace(.,'_',' '))"/> (%)</th>
                  </xsl:for-each>             
                </tr>
              </thead>
              <tbody>
                <xsl:for-each-group select="sample" group-by="@time">
                  <xsl:sort select="@time" order="ascending" data-type="number"/>
                  <tr>
                    <td>
                      <xsl:value-of select="current-grouping-key()"/>
                    </td>
                    <xsl:for-each select="$cols">
                      <td>
                        <xsl:value-of select="current-group()[@label=current()]"/>
                      </td>
                    </xsl:for-each>
                  </tr>
                </xsl:for-each-group>
              </tbody>
            </table>
          </body>
        </html>
      </xsl:template>
    
    </xsl:stylesheet>
    

    <强>输出

    &#13;
    &#13;
    <html>
       <body>
          <table>
             <thead>
                <tr>
                   <th>Time</th>
                   <th>CPU 0 (%)</th>
                   <th>CPU 1 (%)</th>
                   <th>CPU 2 (%)</th>
                </tr>
             </thead>
             <tbody>
                <tr>
                   <td>1</td>
                   <td>28</td>
                   <td>21</td>
                   <td>4</td>
                </tr>
                <tr>
                   <td>14</td>
                   <td>22</td>
                   <td>52</td>
                   <td>6</td>
                </tr>
             </tbody>
          </table>
       </body>
    </html>
    &#13;
    &#13;
    &#13;

    请参阅此处的小提琴:http://xsltfiddle.liberty-development.net/eiQZDbp