XSL - 身份转换 - 更改元素的值

时间:2011-11-04 13:17:18

标签: xml xslt xpath

我想在" @sorregion name [。='默认']"下更改RequestQueue elemt的值。到" DEFAULT.REQUEST。我尝试使用以下身份模板。有谁可以请帮我这个牙齿模板。我只想使用身份模板。 我的xsl文件

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="@name[.='default']/QueueDetails/RequestQueue">
         <xsl:value-of select="'DEFAULT.REQUEST'"/>
    </xsl:template>
</xsl:stylesheet>

我的输入xml

2 个答案:

答案 0 :(得分:3)

我如何处理这个问题的方式与@Kirill Polishchuk所做的相同(+1 btw),那就是仅为需要更改的节点覆盖身份转换。

但是,在您的问题中,您说“我只想使用身份模板。”。如果确实如此,并且您只需要一个模板,则可以这样做:

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

  <xsl:template match="node()|@*">
    <xsl:choose>
      <xsl:when test="current()[name()='RequestQueue'][ancestor::SORRegion[@name = 'default']]">
        <xsl:copy>
          <xsl:text>DEFAULT.REQUEST</xsl:text>
        </xsl:copy>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>        
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>

我很想知道你为什么只想使用身份转换模板。如果您最终需要修改的不仅仅是RequestQueue,那么它会变得很难看。

答案 1 :(得分:2)

使用此模板:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="SORRegion[@name = 'default']/QueueDetails/RequestQueue">
      <xsl:copy>
        <xsl:text>DEFAULT.REQUEST</xsl:text>
      </xsl:copy>
    </xsl:template>

</xsl:stylesheet>