在Node XSLT中插入新节点

时间:2017-02-16 23:36:02

标签: xml xslt

我有一个XML,如下所示。这些值都是为了测试目的而被模拟的

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TAG1>

  <placeholder>ghgh</placeholder>

  <placeholder>ghg</placeholder>

  <placeholder>ghgh</placeholder>

  <placeholder>ghg</placeholder>

  <placeholder>ghgh</placeholder>

  <placeholder>ghg</placeholder>

  <Information>

    <InformationBody>

      <Test>EE</Test>

      <TestTwo>QU1RIENUVEIxICAgICAgIBI3f1QK6wEs</TestTwo>

      <TestThree>20150119.141224508</TestThree>

    </InformationBody>

  </Information>

</TAG1>

我需要在InformationBody标签之后添加一个新节点以及更多额外数据我将如何进行此操作?我是XSLT的新手并提出了上述内容,但我不确定它是否在正确的轨道上。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

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

  <!-- Override for target element -->
  <xsl:template match="TAG1">
    <!-- Copy the element -->
    <xsl:copy>
      <!-- And everything inside it -->
      <xsl:apply-templates select="@* | *"/> 
      <!-- Add new node -->
      <xsl:element name="newNode"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

最终结果看起来像

<Information>
<InformationBody>

      <Test>EE</Test>

      <TestTwo>QU1RIENUVEIxICAgICAgIBI3f1QK6wEs</TestTwo>

      <TestThree>20150119.141224508</TestThree>

    </InformationBody>

<newTag></newTag>
</Information>

1 个答案:

答案 0 :(得分:2)

您可以匹配InformationBody元素,按原样复制,然后在复制后添加元素。如下:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <!-- Identity template, copies everything as is -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <!-- Override for target element -->
    <xsl:template match="InformationBody">
        <!-- Copy the element -->
        <xsl:copy>
            <!-- And everything inside it -->
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
        <!-- Add new node -->
        <xsl:element name="newNode"/>
    </xsl:template>
</xsl:stylesheet>

如果InformationBody之后没有元素,您的方法将会起作用。如果有,newNode将在TAG1的所有子项之后添加。