我有两个用于转换的输入。
一个是源XML source.xml
,看起来像这样:
<ROOT>
<row>
<id>1</id>
<value>FooBar</value>
</row>
<row>
<id>2</id>
<value>Bar</value>
</row>
<row>
<id>3</id>
<value>FooFoo</value>
</row>
</ROOT>
另一个通过参数(<xsl:param name="input" />
)提供到变换中。结构和上面的XML相同。但是包含不同数量的行和不同的值。
<ROOT>
<row>
<id>1</id>
<value>Foo</value>
</row>
<row>
<id>2</id>
<value>Bar</value>
</row>
</ROOT>
现在我需要合并这些输入。我想在source.xml
上迭代,并为每一行的id决定变量和更新中是否有相同的id。若变量$input
中并没有相同的id,我想创建新行。换句话说:source.xml
表示新数据,而输入参数表示我已经拥有的数据。我希望他们合并。我想你明白了。
我尝试了很多方法来解决这个问题,但我总是把id与创建不必要的行进行比较。限制是:
- XSLT1.0限制
- 只有使用XSLT参数才能导入用于比较的输入
输出应该是这样的:
<ROOT>
<row>
<id>1</id>
<value>FooBar</value>
</row>
<row>
<id>2</id>
<value>Bar</value>
</row>
<row>
<id>3</id>
<value>FooFoo</value>
</row>
</ROOT>
如果提供的参数确实是一个节点集,那么您可以执行:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="input" />
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/ROOT">
<xsl:copy>
<xsl:apply-templates/>
<xsl:apply-templates select="$input/ROOT/row[not(id = current()/row/id)]"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>