XSL和命名空间

时间:2010-04-06 14:25:10

标签: xml xslt namespaces

这可能是一个非常简单的问题,但它似乎无法得到它并且正在撕裂我的头发。我有以下XML:

<?xml-stylesheet type="text/xsl" href="email.xsl"?>
<Example xmlns="">
  <Name xmlns="urn:rnb.fulfilment.bus.contracts.public.exampleBookName.v1">Mark</Name>
</Example>

我正在尝试使用以下XSLT:

<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
   <xsl:template match="/">
    <html>
      <body>
        <table width="90%" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td>
              <p>AUTOMATED CONFIRMATION: This confirmation email is unable to take replies. For further assistance please visit our Help pages or Contact us</p>
              <p>Dear <xsl:value-of select="Name"/>,</p>
              <p>Thank you for blah blah... </p>
            </td>
          </tr>
        </table>
        <xsl:apply-templates/>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

我在XML Feed中使用xmlns=urn:rnb.fulfilment.bus.contracts.public.exampleBookName.v1时无法显示名称,当我删除xmlns时,名称显示正常。

我缺少一些语法吗?我已经尝试将名称空间添加到<xsl:stylesheet>元素:

<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:rpg="urn:rnb.fulfilment.bus.contracts.public.exampleBookName.v1"
>

然后使用我在XPath表达式中给XSLT的前缀:

<xsl:value-of select="Name"/>

但这也不起作用。有人可以帮忙吗?提前谢谢。

3 个答案:

答案 0 :(得分:6)

您在<xsl:stylesheet>声明命名空间的方法已经是正确的方向。现在你所要做的就是使用前缀:

<xsl:value-of select="Example/rpg:Name" />

我进一步建议您对模板进行微小更改,以更好地反映您的输入:

<xsl:template match="Example">
  <!-- ... -->
  <xsl:value-of select="rpg:Name" />
</xsl:template>

答案 1 :(得分:4)

您需要在XSLT中使用相同的命名空间,以便Name的XPath表达式匹配。

<xsl:value-of select="x:Name" xmlns:x="urn:rnb.fulfilment.bus.contracts.public.exampleBookName.v1"/>

答案 2 :(得分:0)

或者使用谓词和本地名称()。 E.g:

<xsl:value-of select="*[local-name() = 'Name']"/>