xslt arborescence仅部分起作用

时间:2014-05-19 12:23:36

标签: xslt

我使用xslt从xml文件中提取信息。

xml文件是:

<object>
    <identifier>identifier</identifier>
    <link>UD</link>
    <title>Current Title</tite>
    <impact>
        <product>The product</product>
        <evolution id="Evo 1">
            <descr>Current description</descr>
        </evolution>
    </impact>
</object>

我的xlst文件是:

<xsl:for-each  select="//object">

<tr>                        
<td>
    <xsl:value-of select="identifier"/>
</td>
<td>
      <xsl:value-of select="link"/>
</td>
<td>
      <xsl:value-of select="title"/>
</td>
<td>
      <xsl:value-of select="impact[1]/product"/>
</td>
<td>
      <xsl:value-of select="impact[1]/product/evolution[1]/@id"/>
    </td>
<td>
      <xsl:value-of select="impact[1]/product/evolution[1]/descr"/>
</td>
</tr>

但是,我似乎无法获得最后两个xsl值,我一定是犯了错误(前4列都没问题)。你能解释一下为什么吗?

1 个答案:

答案 0 :(得分:4)

进化是一个兄弟姐妹,而不是product的孩子 - 它是影响力的直接孩子。

  <xsl:value-of select="impact[1]/evolution[1]/@id"/>
  <xsl:value-of select="impact[1]/evolution[1]/descr"/>