0

我有一个 XML 文件,它有许多类似命名的节点,但某些节点中的属性是唯一的。我只想将属于某个属性值的节点输出到 HTML 页面中。

这是xml:

<document>
  <component>
    <section>
      <templateId value="temp_1" />
      <entry>
        <act>
          <code displayName="temp_1:code_1" />
        </act>
      </entry>
      <entry>
        <act>
          <code displayName="temp_1:code_2" />
        </act>
      </entry>
      <entry>
        <act>
          <code displayName="temp_1:code_3" />
        </act>
      </entry>
    </section>
    <section>
      <templateId value="temp_2" />
      <entry>
        <act>
          <code displayName="temp_2:code_1" />
        </act>
      </entry>
      <entry>
        <act>
          <code displayName="temp_2:code_2" />
        </act>
      </entry>
    </section>
  </component>
</document>

在这个特定示例中,我只想从 templateId 值为 temp_2 的部分中获取 displayName 值。这是我正在使用的 XSL 代码,但它可以获取所有内容,而不仅仅是我想要的部分。我知道第一个“何时”正在工作,因为正确的标题(在跨度标签之间)显示正确。这只是通过条目的for-each。

<xsl:tempalte match="/">
<xsl:choose>
  <xsl:when test="//templateId/@value='temp_2'">
    <div style="margin-bottom: 5px; padding: 5px; border-bottom: 1px solid #000000;">
      <span style="font-weight: bold;">Template 2: </span>
      <br />
      <xsl:choose>
        <xsl:when test="count(//section/entry) != 0">
          <xsl:for-each select="//section/entry">
            <xsl:choose>
              <xsl:when test="position() = 1">
                <xsl:value-of select="act/code/@displayName" />
              </xsl:when>
              <xsl:otherwise>
                <br/>
                <xsl:value-of select="act/code/@displayName" />
              </xsl:otherwise>
            </xsl:choose>
          </xsl:for-each>
        </xsl:when>
        <xsl:otherwise>
          No codes to display
        </xsl:otherwise>
      </xsl:choose>
    </div>
  </xsl:when>
</xsl:choose>
</xsl:template>

它应该显示如下:

temp_2:code_1
<br>temp_2:code_2

任何帮助将不胜感激。

4

2 回答 2

1

我猜你想彻底重新研究 XSLT 及其哲学。不要像 BASIC 一样对其进行编程。至少对于您的情况,基本模式是 XSLT 程序是处理匹配元素的模板集合。if不要用and乱扔代码,而是choose编写具有适当匹配条件的模板。而不是 BASIC 的FOR I=1 TO 10,用于<xsl:apply-templates/>“迭代”孩子。这是基本思想:

<xsl:template match="/">
    <html>
        <xsl:apply-templates/>
    </html>
</xsl:template>

<xsl:template match="templateId"/> <!-- skip templateID elements by default -->

<xsl:template match="templateId[@value='temp_2']">
    <div style="margin-bottom: 5px; padding: 5px; border-bottom: 1px solid #000000;">          
        <span style="font-weight: bold;">Template 2: </span>
        <xsl:apply-templates/>
    </div>
</xsl:template>

<xsl:template match="code">
    <xsl:value-of select="@displayName"/>
    <xsl:if test="position() != 1"><br/></xsl:if>
</xsl:template>

<xsl:template match="section[count(entry)=0]">
    No codes to display
</xsl:template>

act为什么没有元素模板?好吧,默认情况下 XSLT 会为您提供一个模板,该模板执行<xsl:apply-templates/>.

于 2013-08-20T17:51:06.207 回答
0

根据您的描述,听起来您只需要 for-each 中的 temp_2 值。

在这种情况下,您只需将您的选择更新为以下内容:

<xsl:for-each select="//section[templateId/@value = 'temp_2']/entry">

这表示要抓取具有等于“temp_2”的属性的任何entry下。sectiontemplateIdvalue

于 2013-08-20T17:49:00.200 回答