分组和身份转换

问题描述 投票:0回答:1

如何同时应用身份转换和分组

  <items>
        <user>
          <id>8788989</id>
         <firstname>test</firstname>
         <lastname>user</lastname>
        </user>
        <info>test xml</info>
        <fromdate><fromdate>
        <todate></todate>

        <item id="123" name="Java">
            <price>1</price>
            <description></description> 
        </item>

        <item id="123" name="Java and XML">
            <price>2</price>
            <description></description> 
        </item>

        <item id="234" name="python">
            <price>3</price>
            <description></description> 
        </item>

        <item id="234" name="scala">
            <price>3</price>
            <description></description> 
        </item>

      </items>

我希望输出为

 <items>
        <user>
          <id>8788989</id>
         <firstname>test</firstname>
         <lastname>user</lastname>
        </user>
        <info>test xml</info>
        <fromdate><fromdate>
        <todate></todate>
         <group>  
            <item id="123" name="Java">
                <price>1</price>
                <description></description> 
            </item>

            <item id="123" name="Java and XML">
               <price>2</price>
               <description></description> 
            </item>
        </group>

        <group>
           <item id="234" name="python">
              <price>3</price>
              <description></description> 
           </item>

           <item id="234" name="scala">
              <price>3</price>
              <description></description> 
           </item>
       </group>
   </items>

分组是在item / @ id上完成的

xslt-2.0 xslt-grouping
1个回答
1
投票

你可以像这样分组:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="2.0">

    <xsl:output indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="items">
        <items>
            <xsl:apply-templates select="* except item"/>
            <xsl:for-each-group select="item" group-by="@id">
                <group>
                    <xsl:apply-templates select="../item[@id = current()/@id]"/>
                </group>
            </xsl:for-each-group>
        </items>
    </xsl:template>

</xsl:stylesheet>

更新的答案:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="2.0">

    <xsl:output indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="items">
        <items>
            <xsl:apply-templates select="* except item"/>
            <xsl:for-each-group select="item" group-by="@id">
                <group>
                    <xsl:apply-templates select="current-group()"/>
                </group>
            </xsl:for-each-group>
        </items>
    </xsl:template>

</xsl:stylesheet>
© www.soinside.com 2019 - 2024. All rights reserved.