這從XML to XML using XSL Problem 伸出我設法進口EXSLT和修改根據解決方案(感謝凱爾對接)給我的代碼如下:如何使用EXSLT來解決XML到XML的問題 - 集:不同
<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>