0

我正在使用以下 xml 信息:

<section>
  <...>
</section>
<section>
  <templateId root="2.16.840.1.113883.10.20.22.2.10" />
  <text>
    <table id="Appointments">
      <tr>
        <td id="heading">Appointments</td>
      </tr>
      <tr>
        <td id="content">No future appointments scheduled.</td>
      </tr>
    </table>
    <br />
    <table id="Referrals">
      <tr>
        <td id="heading">Referrals</td>
      </tr>
      <tr>
        <td id="content">No referrals available.</td>
      </tr>
    </table>
    <br />
  </text>
<section>
<section>
  <...>
</section>

文档中有多个节节点(具有自己的子节点,包括 templateId)。我遇到了这个问题,所以我想具体说明一下 xml 信息。

在我的 xslt 文件中,我想取出一张特定的桌子。我通过以下方式引用它(我正在尝试使用模板,而且我是 XSL 的新手,所以请多多包涵)

<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ms="urn:schemas-microsoft-com:xslt"
xmlns="http://www.w3.org/1999/xhtml">


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

<xsl:template match="/">
  <xsl:apply-templates select="//section[templateId/@root='2.16.840.1.113883.10.20.22.2.17']/text/table[@id='Appointments']" />
</xsl: template>

<xsl:template match="section[templateId/@root='2.16.840.1.113883.10.20.22.2.17']/text/table[@id='Appointments']">
  <div style="float: left; width: 50%;">
    <span style="font-weight: bold;">
    <xsl:value-of select="tr/td[@id='heading']"/>:
    </span>
    <br />
    <xsl:call-template name="replace">
      <xsl:with-param name="string" select="tr/td[@id='content']"/>
    </xsl:call-template>
    </div>
</xsl:template>

<xsl:template name="replace">
  <xsl:param name="string"/>
  <xsl:choose>
    <xsl:when test="contains($string,'&#10;')">
      <xsl:value-of select="substring-before($string,'&#10;')"/>
      <br/>
      <xsl:call-template name="replace">
        <xsl:with-param name="string" select="substring-after($string,'&#10;')"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$string"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

</xsl:stylesheet>

在这个特定的 xml 示例中,输出应该是:

约会:
没有安排未来的约会。

我认为比赛和选择需要一些调整,但不确定是哪一部分。

此外,如果可以调整模板,以便我可以传递带有 table/@id 值的参数,以便我可以将这个模板用于几个项目,那将更加有益(推荐和约会的输出在这个例子中是相同的)。

谢谢你的帮助

4

1 回答 1

1

这是您的 XML 部分根属性(从您的 XML 中剪切和粘贴):

 root="2.16.840.1.113883.10.20.22.2.10" 

这是您的测试 XSL:

 root='2.16.840.1.113883.10.20.22.2.17'

当然它们不匹配,一个以“10”结尾,另一个以“17”结尾

将数据更改为“17”并更正我评论中的其他错误会产生:

 <div style="float: left; width: 50%;"><span style="font-weight: bold;">Appointments:
       </span><br>No future appointments scheduled.
 </div
于 2013-08-30T16:35:49.470 回答