使用xslt将元素复制到新的命名空间

时间:2017-10-02 20:54:24

标签: xml xslt namespaces

我正在尝试更改XML文件的命名空间。我关闭了但是根元素出了点问题。

XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:cd="http://schemas.datacontract.org/2004/07/CMachine" xmlns="http://schemas.datacontract.org/2004/07/CMachine.DataContracts" exclude-result-prefixes="cd">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
  <xsl:strip-space elements="*" />
  <!-- Identify transform -->
  <xsl:template match="@*|text()|comment()|processing-instruction()">
    <xsl:copy/>
  </xsl:template>
  <!-- Create a new element in the new namespace for all elements -->
  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:apply-templates select="@*|node()"/>
    </xsl:element>
  </xsl:template>
</xsl:stylesheet>

输入:

<?xml version="1.0" encoding="utf-8"?>
<Inventory xmlns="http://schemas.datacontract.org/2004/07/CMachine" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Schema>2018</Schema>
  <Machines>
    <Machine>
      <Price>120000</Price>
      <Properties i:nil="true" />
    </Machine>
  </Machines>
</Inventory>

输出:

<?xml version="1.0" encoding="utf-8"?>
<Inventory xmlns="http://schemas.datacontract.org/2004/07/CMachine.DataContracts">
  <Schema>2018</Schema>
  <Machines>
    <Machine>
      <Price>120000</Price>
      <Properties i:nil="true" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />
    </Machine>
  </Machines>
</Inventory>

期望的输出:

<?xml version="1.0" encoding="utf-8"?>
<Inventory xmlns="http://schemas.datacontract.org/2004/07/CMachine.DataContracts" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" >
  <Schema>2018</Schema>
  <Machines>
    <Machine>
      <Price>120000</Price>
      <Properties i:nil="true" />
    </Machine>
  </Machines>
</Inventory>

我需要做哪些调整才能正确转换XML输入?

1 个答案:

答案 0 :(得分:1)

有几种方法可以将名称空间声明(此处为xmlns:i)放在未实际使用的元素上(在元素名称或其任何属性中)。

在XSLT 2.0中,您可以使用xsl:namespace指令。

  <xsl:template match="/*">
    <xsl:element name="{local-name()}">
      <xsl:namespace name="i" select="'http://www.w3.org/2001/XMLSchema-instance'"/>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:element>
  </xsl:template>

在这种特殊情况下,命名空间存在于源文档中,因此您可以将其复制(也适用于XSLT 1.0):

  <xsl:template match="/*">
    <xsl:element name="{local-name()}">
      <xsl:copy-of select="namespace::i"/>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:element>
  </xsl:template>