组合两个xml并产生多个输出



我有以下xml:

car.xml:

<car ref-id="parts.xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <color>red</color>
  <engine>
    <model>Z</model>
  </engine>
</car>

parts.xml:

<?xml version="1.0" encoding="UTF-8"?>
<parts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <engines>
    <engine>
      <model>X</model>
    </engine>
    <engine>
      <model>Y</model>
    </engine>
  </engines>
</parts>
为了得到想要的结果,我需要生成3个输出文件:
<car xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <color>red</color>
  <engine>
    <model>X</model>
  </engine>
</car>
<car xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <color>red</color>
  <engine>
    <model>Y</model>
  </engine>
</car>
<car xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <color>red</color>
  <engine>
    <model>Z</model>
  </engine>
</car>

我被转换卡住了,到目前为止,我有这个转换来组合两个xml,但不知道如何将结果分离到多个输出文件:

<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes" />
    <xsl:variable name="loc">
        <xsl:value-of select="car/@ref-id" />
    </xsl:variable>

    <xsl:template match="@*|node()">
        <xsl:variable name="lookup-document" select="document($loc)/parts/engines" />
        <xsl:copy-of select="*" />
        <xsl:copy-of select="$lookup-document/*" />
    </xsl:template>
</xsl:transform>

XSLT 1.0不支持作为单个转换结果的多个输出文件。如果您的处理器支持它,您可以使用EXSLT exsl:文档扩展元素。否则,您将不得不执行三个单独的转换。

相关内容

  • 没有找到相关文章

最新更新