xslt 1.0 - 在表格单元格中仅显示一个不同的值,作为多列表和备用颜色的一部分

时间:2013-09-10 17:51:56

标签: xslt xslt-1.0

我有一个xml文件,其中有一些数据正在表中输出,分成两列(有效)。这是XML

<structuredBody>
  <component>
    <section>
      <templateId root="2.16.840.1.113883.10.20.22.2.3.1" />
      <entry>
        <organizer>
          <component>
            <observation>
              <code displayName="TIBC" />
              <effectiveTime value="8/29/2013 12:00:00 AM" />
              <value value="39" />
              <referenceRange>
                <observationRange>
                  <text />
                </observationRange>
              </referenceRange>
            </observation>
          </component>
        </organizer>
      </entry>
      <entry>
        <organizer>
          <component>
            <observation>
              <code displayName="TSAT" />
              <effectiveTime value="8/29/2013 12:00:00 AM" />
              <value value="25" />
              <referenceRange>
                <observationRange>
                  <text />
                </observationRange>
              </referenceRange>
            </observation>
          </component>
        </organizer>
      </entry>
      <entry>
        <organizer>
          <component>
            <observation>
              <code displayName="Albumin" />
              <effectiveTime value="9/5/2013 12:00:00 AM" />
              <value value="46" />
              <referenceRange>
                <observationRange>
                  <text />
                </observationRange>
              </referenceRange>
            </observation>
          </component>
        </organizer>
      </entry>
      <entry>
        <organizer>
          <component>
            <observation>
              <code displayName="ALT" />
              <effectiveTime value="9/5/2013 12:00:00 AM" />
              <value value="48" />
              <referenceRange>
                <observationRange>
                  <text>21-72</text>
                </observationRange>
              </referenceRange>
            </observation>
          </component>
        </organizer>
      </entry>
      <entry>
        <organizer>
          <component>
            <observation>
              <code displayName="Bicarbonate" />
              <effectiveTime value="9/5/2013 12:00:00 AM" />
              <value value="69" />
              <referenceRange>
                <observationRange>
                  <text />
                </observationRange>
              </referenceRange>
            </observation>
          </component>
        </organizer>
      </entry>
    </section>
  </component>
  <component>
    <section>
      <...>
    </section>
  </component>
  <component>
    <section>
      <...>
    </section>
  </component>
</structuredBody>

我已经使用xslt格式化了输出:

<xsl:template match="/">
    <xsl:if test="//section[templateId/@root='2.16.840.1.113883.10.20.22.2.3.1']!=''">
        <xsl:variable name="rowLabs" select="ceiling(count(//section[templateId/@root='2.16.840.1.113883.10.20.22.2.3.1']/entry) div $colLabs)" />

        <div style="margin-bottom: 5px; padding: 5px; border-bottom: 1px solid #000000;">
            <span style="font-weight: bold;">Lab Results:</span>
            <table border="0" cellspacing="0" cellpadding="1" width="99%" style="font-size: 11px;">
                <xsl:for-each select="//section[templateId/@root='2.16.840.1.113883.10.20.22.2.3.1']/entry[position() &lt;= $rowLabs]">
                    <tr>
                        <xsl:variable name="otherEntries" select=".|following-sibling::entry[position() mod $rowLabs = 0]" />
                        <xsl:apply-templates select="self::*|$otherEntries" />
                        <xsl:call-template name="blankentries">
                            <xsl:with-param name="entries" select="$colLabs - count($otherEntries) - 1" />
                        </xsl:call-template>
                        <!--<xsl:apply-templates select=".|following-sibling::entry[position() &lt; 2]" />-->
                    </tr>
                </xsl:for-each>
            </table>
        </div>
    </xsl:if>
</xsl:template>

<xsl:template match="section[templateId/@root='2.16.840.1.113883.10.20.22.2.3.1']/entry">
    <td width="75">
        <xsl:call-template name="StripTime">
            <xsl:with-param name="DateTime" select="organizer/component/observation/effectiveTime/@value" />
        </xsl:call-template>
    </td>
    <td width="198">
        <xsl:value-of select="organizer/component/observation/code/@displayName"/>
    </td>
    <td width="50">
        <xsl:value-of select="organizer/component/observation/value/@value"/>
    </td>
    <td width="75">
        <xsl:value-of select="organizer/component/observation/referenceRange/observationRange/text"/>
    </td>
</xsl:template>

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

以便生成的条目节点向下运行然后结束,以便输出为:

<table>
  <tr>
    <td>8/29/2013</td>
    <td>TIBC</td>
    <td>39</td>
    <td></td>
    <td>9/5/2013</td>
    <td>ALT</td>
    <td>48</td>
    <td>21-72</td>
  </tr>
  <tr>
    <td>8/29/2013</td>
    <td>TSAT</td>
    <td>25</td>
    <td></td>
    <td>9/5/2013</td>
    <td>Bicarbonate</td>
    <td>69</td>
    <td></td>
  </tr>
  <tr>
    <td>9/5/2013</td>
    <td>Albumin</td>
    <td>46</td>
    <td></td>
  </tr>
</table>

这给了我:

[entry 1] [entry 4]
[entry 2] [entry 5]
[entry 3]

这就是我正在寻找的,这很棒。

我无法弄清楚的是如何让不同的4细胞入口集在交替进行时交替使用。我不能使用position()因为我正在操作它以在表中获得所需的输出顺序。如果我输出位置来计算数学,在左栏中,它总是“1”而在右栏上它总是“2”所以我不能做位置()mod 2 = 1来设置样式属性。

其次,我只希望日期值出现一次,然后才会出现,直到它发生变化。这样可以使输出理想地看起来像:

<table>
  <tr>
    <td>8/29/2013</td>
    <td>TIBC</td>
    <td>39</td>
    <td></td>
    <td bgcolor="dcdcdc"></td>
    <td bgcolor="dcdcdc">ALT</td>
    <td bgcolor="dcdcdc">48</td>
    <td bgcolor="dcdcdc">21-72</td>
  </tr>
  <tr>
    <td bgcolor="dcdcdc"></td>
    <td bgcolor="dcdcdc">TSAT</td>
    <td bgcolor="dcdcdc">25</td>
    <td bgcolor="dcdcdc"></td>
    <td></td>
    <td>Bicarbonate</td>
    <td>69</td>
    <td></td>
  </tr>
  <tr>
    <td>9/5/2013</td>
    <td>Albumin</td>
    <td>46</td>
    <td></td>
  </tr>
</table>

我不能将bgcolor属性放在“tr”标记中,因为它应该在“列”之间交替,而不仅仅是整行。

感谢您的帮助。这个网站带来了我的xslt知识很长的路要走。我上个月才开始钻研它。

1 个答案:

答案 0 :(得分:1)

对于颜色,基本上有两种情况,具体取决于$rowLabs是奇数还是偶数。

  • 如果它甚至那么奇数行将完全“白色”甚至行将完全“黑色”
  • 如果那是奇怪的话
    • 对于奇数行,奇数列将为白色,偶数为黑色
    • 对于偶数行,奇数列将为黑色,甚至为白色

(“奇数”和“偶数”从1开始计数为XPath position(),所以第一行/列是奇数,第二行是偶数等。)

您可以通过向模板添加一些参数来在XSLT中对该逻辑进行编码。替换

<xsl:apply-templates select="self::*|$otherEntries" />

<xsl:apply-templates select="self::*|$otherEntries">
    <xsl:with-param name="rowNum" select="position()" />
    <xsl:with-param name="totalRows" select="$rowLabs" />
</xsl:apply-templates>

并将参数添加到section模板

<xsl:template match="section[templateId/@root='2.16.840.1.113883.10.20.22.2.3.1']/entry">
    <xsl:param name="rowNum" select="1" />
    <xsl:param name="totalRows" select="2" />

现在我们需要一个命名模板,我们可以调用它来实现上面描述的逻辑:

<xsl:template name="bgcolor">
    <xsl:param name="rowNum" select="1" />
    <xsl:param name="totalRows" select="2" />
    <xsl:if test="($totalRows mod 2 = 0 and $rowNum mod 2 = 0) or
                  ($totalRows mod 2 = 1 and $rowNum mod 2 != position() mod 2)">
        <xsl:attribute name="bgcolor">dcdcdc</xsl:attribute>
    </xsl:if>
</xsl:template>

如果存在偶数行并且当前rownum是偶数,或者如果存在奇数行且当前数字,则会添加bgcolor属性该行与行号有“不同的奇怪”。

最后,我们在<td>元素中调用此模板,例如

<td width="50">
    <xsl:call-template name="bgcolor">
        <xsl:with-param name="rowNum" select="$rowNum" />
        <xsl:with-param name="totalRows" select="$totalRows" />
    </xsl:call-template>
    <xsl:value-of select="organizer/component/observation/value/@value"/>
</td>

使所有这些工作变得至关重要的事实是您将模板应用于self::*|$otherEntries,因此在应用模板中调用position()会给出列号(此节点内的位置) list),而不是节点在其父节点中的原始位置。


要使日期仅在第一次出现时出现,您可以定义并使用与“Muenchian分组”技术相关的技巧。声明

<xsl:key name="effectiveTimeByDate" match="effectiveTime"
         use="substring-before(@value, ' ')" />

然后您可以使用

检查这是否是文档中特定日期的第一次出现
<td width="75">
    <xsl:call-template name="bgcolor">
        <xsl:with-param name="rowNum" select="$rowNum" />
        <xsl:with-param name="totalRows" select="$totalRows" />
    </xsl:call-template>
    <xsl:if test="
         generate-id(organizer/component/observation/effectiveTime)
       = generate-id(key('effectiveTimeByDate', substring-before(
            organizer/component/observation/effectiveTime/@value, ' '))[1])">
        <xsl:call-template name="StripTime">
            <xsl:with-param name="DateTime" select="organizer/component/observation/effectiveTime/@value" />
        </xsl:call-template>
    </xsl:if>
</td>

(您可以完全废弃StripTime模板,只需使用与我在密钥中使用的substring-before调用相同的内容)