使用XSLT添加/插入子元素

时间:2013-09-20 08:48:13

标签: xml xslt

我有以下情况:

我需要将子元素添加到现有的XML标记中。

我当前的XML看起来像这样,它包含一个空的(自闭)“<attr tag=.../>”:

<?xml version="1.0" encoding="UTF-8"?>
<dataset>
...
<attr tag="00081110" vr="SQ" pos="-1" name="Referenced Study Sequence" len="-1"/>
...
</dataset>
转换后,它应该看起来像这样,添加/插入了2个子元素(由<item>元素包围):

<?xml version="1.0" encoding="UTF-8"?>
<dataset>
...
<attr tag="00081110" vr="SQ" pos="-1" name="Referenced Study Sequence" len="-1">
  <item id="1" pos="28" len="-1">
    <attr tag="00081150" vr="UI" pos="36" name="Referenced SOP Class UID" vm="0" len="3">991</attr>
    <attr tag="00081155" vr="UI" pos="44" name="Referenced SOP Instance UID" vm="0" len="3">992</attr>
  </item>
</attr>

...
</dataset>

我怎样才能做到这一点?我尝试了各种随机设置,但在我最好的镜头中,我最后用一个子元素替换了父元素(tag =“00081110”)。

1 个答案:

答案 0 :(得分:2)

<xsl:template match="attr">
  <xsl:copy>
    <xsl:copy-of select="@*" />

    <item id="1" pos="28" len="-1">
      <attr tag="00081150" vr="UI" pos="36" name="Referenced SOP Class UID" vm="0" len="3">991</attr>
      <attr tag="00081155" vr="UI" pos="44" name="Referenced SOP Instance UID" vm="0" len="3">992</attr>
    </item>

  </xsl:copy>
</xsl:template>