如何更改属性值?

How to change attribute values?

输入xml文件:

<root>
  <x1 attr11="sd5">
    <x2 attr12="sd6" attr15="sd7">
      <a attr0="sd5"/>
      <b>
        <x3 attr18="sd8">
          <c>
            <x4 attr19="sd9" />
            <d awance="1" imlit="[0-200][201-300][301-1000]" />
            <e awance="2" imlit="[0-500][501-1900]" />
          </c>
        </x3>
      </b>
    </x2>
  </x1>
</root>

从中获取更新的“updates.xml”文件 - a、b、c、d、e 标签和新的“awance”和“imlit”标签的属性,它们是输入文件:

<updates>
    <a attr1="adf" attr2="67" />
    <b attr3="g6h"/>    
    <c attr4="7jj" />   
    <d attr5="88" attr6="mn4" />    
    <e />
    <awance const="?" attr7="terd7"/>
    <imlit title="title" description="description">
        <Template>
          <Minimum title="min"  const="?" description="desc" />
          <Maximum title="max"  const="?" description="desc" />
        </Template>
    </imlit>
</updates>

如果输入文件包含“updates.xml”文件中的标签,则“updates.xml”文件中的属性将被复制到其中。 此外,如果输入文件中的标签具有“awance”and/or“imlit”属性,则在转换后该属性变为子标签而不是属性,并且“awance”的值and/or 输入文件的“imlit”属性分别成为转换后文件的标签“awance”and/or“imlit”的“const”属性的值。 XSLT1.0 转换后的文件应该是这样的:

<root>
  <x1 attr11="sd5">
    <x2 attr12="sd6" attr15="sd7">
      <a attr0="sd5" attr1="adf" attr2="67" />
      <b attr3="g6h">
        <x3 attr18="sd8">
          <c attr4="7jj">
            <x4 attr19="sd9" />
            <d attr5="88" attr6="mn4">
              <awance const="1" attr7="terd7" />
              <imlit title="title" description="description">
                <Item key="1">
                  <Minimum title="min" const="0" description="desc" />
                  <Maximum title="max" const="200" description="desc" />
                </Item>
                <Item key="2">
                  <Minimum title="min" const="201" description="desc" />
                  <Maximum title="max" const="300" description="desc" />
                </Item>
                <Item key="3">
                  <Minimum title="min" const="301" description="desc" />
                  <Maximum title="max" const="1000" description="desc" />
                </Item>
              </imlit>
            </d>
            <e>
              <awance const="2" attr7="terd7" />
              <imlit title="title" description="description">
                <Item key="1">
                  <Minimum title="min" const="0" description="desc" />
                  <Maximum title="max" const="500" description="desc" />
                </Item>
                <Item key="2">
                  <Minimum title="min" const="501" description="desc" />
                  <Maximum title="max" const="1900" description="desc" />
                </Item>
              </imlit>
            </e>
          </c>
        </x3>
      </b>
    </x2>
  </x1>
</root>

现在这是 XSLT1.0 转换文件:

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

  <xsl:param name="updates" select="document('updates.xml')"/>
  <xsl:key name="replacement" match="*" use="local-name()"/>

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

  <xsl:template match="*">
    <xsl:copy>
      <xsl:apply-templates select="@*" />
      <xsl:variable name="this" select="."/>
      <xsl:for-each select="$updates">
        <xsl:apply-templates select="key('replacement', local-name($this))/@*"/>
        <xsl:choose>
          <xsl:when test="not($this[@awance])">
          </xsl:when>
          <xsl:otherwise>
            <xsl:variable name="const" select="$this/@awance"/>
            <xsl:variable name="replacement">
              <xsl:for-each select="$updates">
                <xsl:copy-of select="key('replacement', local-name($this))"/>
              </xsl:for-each>
            </xsl:variable>
            <xsl:variable name="awance" select="$updates//awance" />
            <xsl:copy-of select="$awance"/>
            <xsl:variable name="imlit" select="$updates//imlit" />
            <xsl:copy-of select="$imlit"/>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:for-each>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="@awance" />
  <xsl:template match="@imlit" />

</xsl:stylesheet>

XML 转换后的文件:

<root>
  <x1 attr11="sd5">
    <x2 attr12="sd6" attr15="sd7">
      <a attr0="sd5" attr1="adf" attr2="67" />
      <b attr3="g6h">
        <x3 attr18="sd8">
          <c attr4="7jj">
            <x4 attr19="sd9" />
            <d attr5="88" attr6="mn4">
              <awance const="?" attr7="terd7" />
              <imlit title="title" description="description">
                <Template>
                  <Minimum title="min" const="?" description="desc" />
                  <Maximum title="max" const="?" description="desc" />
                </Template>
              </imlit>
            </d>
            <e>
              <awance const="?" attr7="terd7" />
              <imlit title="title" description="description">
                <Template>
                  <Minimum title="min" const="?" description="desc" />
                  <Maximum title="max" const="?" description="desc" />
                </Template>
              </imlit>
            </e>
          </c>
        </x3>
      </b>
    </x2>
  </x1>
</root>

如何更改“const”属性值?

这应该会给你一个好的开始。

<xsl:template match="@awance" />
<xsl:template match="@imlit" />

<xsl:template match="a|b|c|d|e">
  <xsl:variable name="name" select="local-name()"/>
  <xsl:copy>
    <xsl:apply-templates select="@*[local-name() != 'awance' and local-name() != 'imlit']"/>
    <xsl:apply-templates select="$updates//*[local-name() = $name]/@*"/>
    <xsl:apply-templates select="node()"/>
    <xsl:if test="boolean(@awance)">
      <xsl:element name="awance">
        <xsl:attribute name="const">
          <xsl:value-of select="@awance"/>
        </xsl:attribute>
      <xsl:apply-templates select="$updates//awance/@*[local-name() != 'const']"/>
      </xsl:element>
    </xsl:if>
    <xsl:if test="boolean(@imlit)">
      <xsl:element name="imlit">
        <xsl:apply-templates select="$updates//imlit/@*"/>
        <!-- I left this part for you.  Convert the delimited list in imlit from the 
             input file to a node-set and then for-each element.  Use the template  
             from the update file to output.  -->
      
  
      </xsl:element>
    </xsl:if>
  </xsl:copy>
</xsl:template>

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