我正在看Muenchian Grouping。我尝试找到类似于我的xml但找不到的示例。大多数例子结构合理,而我的情况令人困惑。
这是我的XML的缩短版本(请注意,我无法更改XML结构,因为它是一个标准的东西而且不在我手中),而且我正在使用XSLT 1,因为系统现在只支持该版本。 / p>
<object>
<creator id="123">
<name>ABC</name>
<city>Hamilton</city>
</creator>
<creator><references>456</references></creator>
<contact><references>123</references></contact>
<creator id="456">
<name>XYZ</name>
<city>New York</city>
</creator>
<associatedParty><references>123</references>
<role>Sponsor</role>
</associatedParty>
</object>
我想要的输出是:
<party id="123">
<name>ABC</name>
<city>Hamilton</city>
<role>Creator</role>
<role>Contact</role>
<role>Sponsor</role>
</party>
<party id="456">
<name>XYZ</name>
<city>New York</city>
<role>Creator</role>
<role>Contact</role>
</party>
现在id属性被用作references元素的值。输出中的标记可以是创建者,联系人,也可以是元素内部的任何内容,如果它位于associatedParty元素下。
我很难创建密钥来从id / references属性中对它们进行分组。据我所知,使用xsl:key的示例仅适用于具有相同名称的节点,并且我发布的示例具有不同的节点名称。任何帮助将不胜感激!!!!
答案 0 :(得分:1)
此转化:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:key name="kRefByVal" match="references"
use="."/>
<xsl:key name="kCreatorById" match="creator"
use="@id"/>
<xsl:key name="kRoleNameByRef"
match="*[not(self::associatedParty
or
self::creator
)
]"
use="references"/>
<xsl:key name="kAssocByRef"
match="associatedParty"
use="references"/>
<xsl:template match="/">
<xsl:variable name="vReferences" select=
"*/*/references
[generate-id()
=
generate-id(key('kRefByVal',.)[1])
]
"/>
<xsl:apply-templates select="$vReferences">
<xsl:sort select="." data-type="number"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="references" priority="3">
<party id="{.}">
<xsl:copy-of select="key('kCreatorById',.)/*"/>
<xsl:apply-templates select=
"key('kCreatorById',.)"/>
<xsl:apply-templates select=
"key('kRoleNameByRef',.)"/>
<xsl:copy-of select="key('kAssocByRef',.)/role"/>
</party>
</xsl:template>
<xsl:template match="*[not(self::associatedParty)]">
<role>
<xsl:value-of select="name()"/>
</role>
</xsl:template>
</xsl:stylesheet>
应用于提供的XML文档:
<object>
<creator id="123">
<name>ABC</name>
<city>Hamilton</city>
</creator>
<creator>
<references>456</references>
</creator>
<contact>
<references>123</references>
</contact>
<creator id="456">
<name>XYZ</name>
<city>New York</city>
</creator>
<associatedParty>
<references>123</references>
<role>Sponsor</role>
</associatedParty>
</object>
生成想要的正确结果:
<party id="123">
<name>ABC</name>
<city>Hamilton</city>
<role>creator</role>
<role>contact</role>
<role>Sponsor</role>
</party>
<party id="456">
<name>XYZ</name>
<city>New York</city>
<role>creator</role>
</party>
答案 1 :(得分:0)
您可以使用此模板:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="//creator[not(references)]"/>
</xsl:template>
<xsl:template match="creator">
<party id="{@id}">
<xsl:copy-of select="name"/>
<xsl:copy-of select="city"/>
<role>Creator</role>
<xsl:apply-templates select="../*[not(self::creator) and references = current()/@id]"/>
</party>
</xsl:template>
<xsl:template match="associatedParty" priority="1">
<xsl:copy-of select="role"/>
</xsl:template>
<xsl:template match="*[references]">
<role>
<xsl:value-of select="name()"/>
</role>
</xsl:template>
</xsl:stylesheet>
输出:
<party id="123">
<name>ABC</name>
<city>Hamilton</city>
<role>Creator</role>
<role>contact</role>
<role>Sponsor</role>
</party>
<party id="456">
<name>XYZ</name>
<city>New York</city>
<role>Creator</role>
</party>