在同一级别为同一XML元素呈现不同的模板

时间:2011-06-10 15:46:05

标签: xml templates xslt apply-templates

XML:

<Root>
  <Elements>
    <Element>el1</Element>
    <Element>el2</Element>
   </Elements>

  <Elements>
    <Element>el1</Element>
    <Element>el2</Element>
   </Elements>
</Root>

尝试生成为同一元素应用两个不同的模板。

主要模板:

<xsl:stylesheet version="1.0">
      <xsl:template match="/Root">
           At root level
             <xsl:apply-templates select="Elements">

             <h1>Render something more</h1>

             <xsl:apply-templates select="Elements" mode="1:Custom">
        </xsl:template>


    <!-- This doesn't render though it is called above-->
      <xsl:template match="Elements"> 
      render something here
      </xsl:template>

    <!-- This renders twice -->
      <xsl:template match="Elements" mode="1:Custom">
      render something else here
      </xsl:template>
</xsl:stylesheet>

如果我将模式添加到第一个模板,则两者都不会渲染。

也尝试过:

 <xsl:apply-templates select="Elements" mode="1:Custom" />

将不同的模板应用为:

<xsl:apply-templates select="Elements" mode="Different" />

仅渲染两个中的一个(第一个具有指定模式的渲染)。 即

<xsl:template match="Elements">
</xsl:template>

不呈现

<xsl:template match="Elements" mode="Different" />呈现两次。

我该如何解决这个问题?我研究过的每个地方都建议优先考虑模式。因为有这么多程序员使用它,所以必须是简单的东西吗?

2 个答案:

答案 0 :(得分:5)

<?xml version="1.0"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

      <xsl:template match="/Root">
           At root level
             <xsl:apply-templates select="Elements"/>

             <h1>After first template</h1>

             <xsl:apply-templates select="Elements" mode="Custom"/>
        </xsl:template>

      <xsl:template match="Elements">
      <p>First template</p> 
          <xsl:apply-templates select="Element"/>
      </xsl:template>

      <xsl:template match="Elements" mode="Custom">
         <p>Second template      </p>
      </xsl:template>
      </xsl:stylesheet>

答案 1 :(得分:4)

<xsl:template match="Elements" mode="1:Custom">

您正在使用syntactically illegal mode name (必须是 QName ),任何合规的XSLT处理器都必须发出错误。

解决方案:只需更改

即可
    mode="1:Custom"

    mode="Custom"

因此,此转换是正确的

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="/Root">
       At root level
     <xsl:apply-templates select="Elements"/>
     <h1>Render something more</h1>

     <xsl:apply-templates select="Elements" mode="Custom"/>
    </xsl:template>

    <xsl:template match="Elements">
       render something here

    </xsl:template>

    <xsl:template match="Elements" mode="Custom">

     render something else here
   </xsl:template>

   <xsl:template match="text()"/>
</xsl:stylesheet>

应用于提供的XML文档

<Root>
    <Elements>
        <Element>el1</Element>
        <Element>el2</Element>
    </Elements>
    <Elements>
        <Element>el1</Element>
        <Element>el2</Element>
    </Elements>
</Root>

产生了想要的正确结果:

       At root level

   render something here


   render something here

<h1>Render something more</h1>

 render something else here


 render something else here