将节点序列渲染为M x N表

时间:2010-03-01 13:07:58

标签: xslt

@Oded:很抱歉我的博览会很糟糕......我的输入文档有这样的片段:

<recordset name="resId" >
<record n="0">example 1</record>
<record n="1">example 2</record>
<record n="2">example 1</record>
....
<record n="N">example 1</record>
</recordset>

包含任意长的节点序列。属性“n”报告序列中节点的顺序。我需要在M(行)x N(列)表中作为输出排列,我在这方面遇到了一些麻烦。我无法调用模板

<xsl:template match="recordset">
   <table>
      <xsl:apply-templates select="record"/>
   </table>
</xsl:template>

有类似的东西:

<xsl:template match="record">
<xsl:if test="@n mod 3 = 0">
    <tr>
</xsl:if>
........
<td><xsl:value-of select"something"></td>

因为代码无效(我应该以某种方式在模板的末尾重复它) 并且我必须对编号属性的存在放置一些(可能太多)信任。有人有提示吗?谢谢!

3 个答案:

答案 0 :(得分:3)

您必须确保永远不会破坏嵌套。您想要嵌套在输出中的东西必须嵌套在XSLT中。

<xsl:variable name="perRow" select="3" />

<xsl:template match="recordset">
  <table>
    <xsl:apply-templates 
      mode   = "tr"
      select = "record[position() mod $perRow = 1]"
    />
  </table>
</xsl:template>

<xsl:template match="record" mode="tr">
  <tr>
    <xsl:variable name="td" select="
      . | following-sibling::record[position() &lt; $perRow]
    " />
    <xsl:apply-templates mode="td" select="$td" />
    <!-- fill up the last row -->
    <xsl:if test="count($td) &lt; $perRow">
      <xsl:call-template name="filler">
        <xsl:with-param name="rest" select="$perRow - count($td)" />
      </xsl:call-template>
    </xsl:if>
  </tr>
</xsl:template>

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

<xsl:template name="filler">
  <xsl:param name="rest" select="0" />
  <xsl:if test="$rest">
    <td />
    <xsl:call-template name="filler">
      <xsl:with-param name="rest" select="$rest - 1" />
    </xsl:call-template>
  </xsl:if>
</xsl:template>

答案 1 :(得分:1)

使用xslt 2.0

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output indent="yes"/>
    <xsl:param name="rows">3</xsl:param>
    <xsl:template match="recordset">
        <table>
            <xsl:for-each-group select="record" group-by="count(preceding-sibling::*) mod $rows ">
                <xsl:value-of select="current-grouping-key()"/>
                <tr>
                    <xsl:for-each select="current-group()">
                        <td>
                            <xsl:apply-templates/>
                        </td>
                    </xsl:for-each>
                </tr>
            </xsl:for-each-group>
        </table>
    </xsl:template>
</xsl:stylesheet>

答案 2 :(得分:0)

在XSLT 1.0中,使用一般的每行n模板。

使用行元素名称作为参数,n-per-row模板不依赖于您的输入或输出格式。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:output method="xml" indent="yes" />

  <xsl:template match="recordset">
    <table>
      <xsl:call-template name="n-per-row">
        <xsl:with-param name="select" select="record" />
        <xsl:with-param name="row-size" select="2"/>
        <xsl:with-param name="row-element" select="'tr'"/>
      </xsl:call-template>
    </table>
  </xsl:template>

  <xsl:template match="record">
    <xsl:copy-of select="."/>
  </xsl:template>

  <xsl:template name="n-per-row">
    <xsl:param name="select" />
    <xsl:param name="row-size" />
    <xsl:param name="row-element" />
    <xsl:param name="start">
      <xsl:text>1</xsl:text>
    </xsl:param>

    <xsl:variable name="count" select="count($select)" />
    <xsl:variable name="last-tmp" select="number($start) + number($row-size)" />
    <xsl:variable name="last">
      <xsl:choose>
        <xsl:when test="$last-tmp &gt; $count">
          <xsl:value-of select="$count"/>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="$last-tmp"/>
        </xsl:otherwise>
      </xsl:choose>
    </xsl:variable>

    <xsl:element name="{$row-element}">
      <xsl:apply-templates select="$select[position() &lt;= $last]"/>
    </xsl:element>

    <xsl:if test="count($select) &gt; $last">
      <xsl:call-template name="n-per-row">
        <xsl:with-param name="select" select="$select[position() &gt; $last]"/>
        <xsl:with-param name="row-size" select="$row-size"/>
        <xsl:with-param name="row-element" select="$row-element"/>
        <xsl:with-param name="start" select="$start"/>
      </xsl:call-template>
    </xsl:if>

  </xsl:template>

</xsl:stylesheet>