How to extend a Muenchian XML grouping?

此生再无相见时 提交于 2019-12-13 04:32:02

问题


I have this XML:

<events>
  <event name="Christmas" attendees="1"/>
  <event name="Halloween" attendees="3"/>
  <event name="Easter" attendees="2"/>
  <event name="Easter" attendees="1"/>
</events>

Thanks to hr_117's help, I managed to do this:

<xsl:template match="data">
  <xsl:apply-templates select="events"/>
</xsl:template>

<xsl:key name="events-by-name" match="events/event" use="@name" />

<xsl:template match="events">
<xsl:for-each select="event[count(. | key('events-by-name', @name)[1]) = 1]">
    <p>
        <xsl:value-of select="concat(@name,': ')" />
        <xsl:value-of select="count(key('events-by-name', @name))" />
        <xsl:text> booking(s)</xsl:text>        
    </p>
</xsl:for-each>
</xsl:template>

</xsl:stylesheet>

Which gives me this output:

Christmas: 1 booking(s)
Halloween: 1 booking(s)
Easter: 2 booking(s)

But how can I count the attendees as well, so that I get this:

Christmas: 1 booking(s), 1 attendee(s)
Halloween: 1 booking(s), 3 attendee(s)
Easter: 2 booking(s), 1 attendee(s)

Can anybody help?

Thanks!


回答1:


How about this? I tried it with the sum method and I can see the accumulated value, I also added some additional elements for testing.

<xsl:value-of select="concat(@name,': ')"/>
<xsl:value-of select="count(key('events-by-name', @name))"/>
<xsl:text> booking(s), </xsl:text>
<xsl:value-of select="sum(key('events-by-name', @name)/@attendees)"/>
<xsl:text> attendee(s)</xsl:text>


来源:https://stackoverflow.com/questions/16572145/how-to-extend-a-muenchian-xml-grouping

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!