我有以下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>
答案 0 :(得分:0)
XSLT 1.0不支持单个转换的多个输出文件。如果您的处理器支持它,您可以使用EXSLT exsl:document扩展元素。否则你将不得不进行三次单独的转换。