这从XML 扩展到使用 XSL 的 XML 问题 我设法导入 exslt 并根据给出的解决方案(感谢 Kyle Butt)修改了我的代码,如下所示:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:func="http://exslt.org/functions"
xmlns:set="http://exslt.org/sets"
extension-element-prefixes="set">
<xsl:import href="set.distinct.function.xsl"/>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="gallery">
<gallery>
<xsl:variable name="gallery" select="."/>
<xsl:for-each select="set:distinct(photo/tag/event)">
<xsl:value-of select="."/>
<event name="{.}">
<xsl:variable name="event" select="." />
<xsl:for-each select="set:distinct($gallery/object/tag[event=.]/group)">
<group name="{.}">
<xsl:variable name="group" select="." />
<xsl:apply-templates select="$gallery/object[tag/event=$event][tag/group=$group]" />
</group>
</xsl:for-each>
</event>
</xsl:for-each>
</gallery>
</xsl:template>
但是输出中有错误说 - '函数集:distinct()失败。值不能为空。如何解决这个问题?
顺便说一句 XML 输入:
<gallery>
<photo>
<tag>
<event>Birthday</event>
<group>Family</group>
<other>Swensens</other>
</tag>
</photo>
<photo>..</photo>
</gallery>
& 所需的 XML 输出:
<gallery>
<event name="Birthday">
<group name="Family">
<photo>
<tag>
<other>Swensens</other>
</tag>
</photo>
<photo>..</photo>
</group>
<group>..</group>
</event>
<event>..</event>
</gallery>