如何基于条件跳过XML中的节点并在具有匹配条件的节点中添加该值

时间:2019-03-26 11:51:17

标签: xml xslt

我有一个XML文件,其中包含多个包含Amount元素的产品节点。如果发现重复的元素,那么我需要跳过该元素,并使用已存在的元素总结“金额”。

这是我要根据产品名称和标识合并金额的XML代码。

library(data.table)
setDT(my.df)[, num3 := unlist(lapply(seq_len(.N), 
         function(i) sum(exp(-2 * (vect[i] - vect[-i]))))), let]
my.df
#   let num1 vect      num3
#1:   A    1  0.5 1.9411537
#2:   A    2  0.7 0.9715143
#3:   A    3  0.1 5.5456579
#4:   B    1  0.5 1.9411537
#5:   B    2  0.7 0.9715143
#6:   B    3  0.1 5.5456579
#7:   C    1  0.5 1.9411537
#8:   C    2  0.7 0.9715143
#9:   C    3  0.1 5.5456579

我期望输出如下。

<List>
    <ProductCatList>
        <ProductCatListListID identity="new"/>
            <ProductCategory name="abc">
                <Product name="plastic">
                    <ProductID  identity="prod"/>
                    <Amount value="3"/>
                </Product>
            </ProductCategory>
    </ProductCatList>
    <ProductCatList>
        <ProductCatListListID identity="new"/>
            <ProductCategory name="pqrs">
                <Product name="other">
                    <ProductID  identity="test"/>
                    <Amount value="58"/>
                </Product>
            </ProductCategory>
    </ProductCatList>
    <ProductCatList>
        <ProductCatListListID identity="new"/>
            <ProductCategory name="xyz">
                <Product name="plastic">
                    <ProductID  identity="prod"/>
                    <Amount value="6"/>
                </Product>
            </ProductCategory>
    </ProductCatList>
</List>

2 个答案:

答案 0 :(得分:0)

如果您使用的是版本 1.0 ,则实现该目标的方法之一是:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes" />
<xsl:strip-space elements="*" />

<xsl:key name="productKey" match="/List/ProductCatList/ProductCategory/Product" use="ProductID/@identity" />

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

<xsl:template match="/List/ProductCatList">
    <xsl:for-each select="ProductCategory/Product[generate-id() = generate-id(key('productKey', ProductID/@identity)[1])]">
        <xsl:variable name="pkeyGroup" select="key('productKey', ProductID/@identity)" />

        <ProductCatList>
            <ProductCatListListID><xsl:attribute name="identity"><xsl:value-of select="../../ProductCatListListID/@identity"/></xsl:attribute>
                <ProductCategory><xsl:attribute name="name"><xsl:value-of select="../@name"/></xsl:attribute>
                    <Product><xsl:attribute name="name"><xsl:value-of select="@name"/></xsl:attribute>
                        <ProductID><xsl:attribute name="identity"><xsl:value-of select="ProductID/@identity"/></xsl:attribute></ProductID>
                        <Amount><xsl:attribute name="value"><xsl:value-of select="sum($pkeyGroup/Amount/@value)"/></xsl:attribute></Amount>
                    </Product>
                </ProductCategory>
            </ProductCatListListID>
        </ProductCatList>

    </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

http://xsltfiddle.liberty-development.net/3NJ38Z9

答案 1 :(得分:0)

XSLT 2.0

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

    <!-- Grouping ProductCatList -->
    <xsl:template match="List">
        <xsl:copy>
            <xsl:for-each-group select="ProductCatList" group-by="descendant::Product/@name">
                <xsl:apply-templates/>
            </xsl:for-each-group>
        </xsl:copy>
    </xsl:template>

   <!-- Sum for Amount/@value -->
    <xsl:template match="Amount/@value">
        <xsl:attribute name="value" select="sum(//Amount[../@name = current()/../../@name]/@value)"/>
    </xsl:template>

您可以在https://xsltfiddle.liberty-development.net/94rmq6d

看到转换