我正在尝试将两个或多个源文档的内容合并到一个输出文档中,其中内容应位于相同的节点中。
两个源文档是Resources.resx:
<?xml version="1.0" encoding="utf-8"?>
<root>
<data name="ButtonCancelString">
<value>Cancel</value>
</data>
<data name="ButtonCloseString">
<value>Close</value>
</data>
</root>
和Resources.de.resx:
<?xml version="1.0" encoding="utf-8"?>
<root>
<data name="ButtonCancelString">
<value>Abbrechen</value>
</data>
<data name="ButtonCloseString">
<value>Schließen</value>
</data>
</root>
我使用以下转换(combine.xslt):
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/empty">
<root>
<constants>
<xsl:apply-templates select="document('Resources.resx')">
<xsl:with-param name="language" select="'en'"/>
</xsl:apply-templates>
<xsl:apply-templates select="document('Resources.de.resx')">
<xsl:with-param name="language" select="'de'"/>
</xsl:apply-templates>
</constants>
</root>
</xsl:template>
<xsl:template match="/root/data">
<xsl:param name="language"/>
<xsl:element name="const">
<xsl:attribute name="name">
<xsl:value-of select="@name"/>
</xsl:attribute>
<xsl:element name="text">
<xsl:attribute name="lang" >
<xsl:value-of select="$language"/>
</xsl:attribute>
<xsl:value-of select="value"/>
</xsl:element>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
我在一个空的xml上运行转换:
<?xml version="1.0" encoding="UTF-8"?>
<empty/>
结果文件是这样的(删除了一些噪音):
<root >
<constants>
<const name="ButtonCancelString">
<text lang="en">Cancel</text>
</const>
<const name="ButtonCloseString">
<text lang="en">Close</text>
</const>
<const name="ButtonCancelString">
<text lang="de">Abbrechen</text>
</const>
<const name="ButtonCloseString">
<text lang="de">Schließen</text>
</const>
</constants>
</root>
但不是重复的节点,我需要以下输出:
<?xml version="1.0" encoding="UTF-8"?>
<root >
<constants>
<const name="ButtonCancelString">
<text lang="en">Cancel</text>
<text lang="de">Abbrechen</text>
</const>
<const name="ButtonCloseString">
<text lang="en">Close</text>
<text lang="de">Schließen</text>
</const>
</constants>
</root>
有没有办法通过transfomations实现这一目标?
答案 0 :(得分:3)
由于你的样式表有version="2.0"
我编写了一个XSLT 2.0解决方案,我会使用密钥或for-each-group
,在下面的示例中我使用了密钥。它期望Resources.resx
作为主要输入文档,并且期望具有Resource.lang.resx
形式的字符串序列的参数用于其他文档:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="xs fn">
<xsl:param name="resource-urls" as="xs:string*" select="'Resources.de.resx', 'Resources.es.resx'"/>
<xsl:variable name="resource-docs" as="document-node()*" select="for $url in $resource-urls return doc($url)"/>
<xsl:key name="name" match="data" use="@name"/>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/root">
<root>
<constants>
<xsl:apply-templates select="data"/>
</constants>
</root>
</xsl:template>
<xsl:template match="/root/data">
<const name="{@name}">
<xsl:apply-templates select="., for $doc in $resource-docs return key('name', @name, $doc)" mode="value"/>
</const>
</xsl:template>
<xsl:template match="/root/data" mode="value">
<xsl:variable name="name-tokens" select="tokenize(tokenize(document-uri(/), '/')[last()], '\.')"/>
<xsl:variable name="language" as="xs:string" select="if ($name-tokens[3]) then $name-tokens[2] else 'en'"/>
<text lang="{$language}">
<xsl:value-of select="value"/>
</text>
</xsl:template>
</xsl:stylesheet>