我正在尝试使用xslt1转换xml。
基本上,如果某个子节点的子节点已经存在,我想删除一个节点输入的格式类似于:
<Quote>
… lots of data …
<ItemService>
<ID></ID>
…
<Product>
<InternalId>value</InternalId>
<DeliveryInfo>
<lots of subitems>
</Deliveryinfo>
<service>SERVICETEYPE</service>
<some more infos/>
</Product>
…
</Itemservice>
<ItemService>
<ID></ID>
…
<Product>
<InternalId>value</InternalId>
<DeliveryInfo>
<lots of subitems>
</deliveryinfo>
<service>SERVICETEYPE</service>
<some more infos/>
</Product>
…
</ItemService>
… some more data …
</quote>
因此,如果已经存在另一个具有相同值的<ItemService>
,我想删除<ItemService>
。
假设我们有10个ItemServices,其中有三个Product/service值为"assembly",我只想在输出中留下一个(不在乎是哪一个(。
我尝试了很多东西,但都没有成功。。。
我认为这是朝着正确的方向发展的,但有点行不通。。。
非常感谢任何帮助,xslt不是我喜欢的,这一次真的很烦人…
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:key name="product" match="Product" use="concat(generate-id(parent::*), service)"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="ItemService">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="Product[generate-id(.) = generate-id(key('product' , concat(generate-id(parent::*), service))[1])]" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
如果我猜对了(!(,你想做一些类似的事情:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:key name="item-by-service" match="ItemService" use="Product/service" />
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Quote">
<xsl:copy>
<xsl:apply-templates select="*[not(self::ItemService)]"/>
<!-- keep only distinct items -->
<xsl:apply-templates select="ItemService[generate-id(.) = generate-id(key('item-by-service', Product/service)[1])]" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
可以简化为:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:key name="item-by-service" match="ItemService" use="Product/service" />
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- remove duplicate items -->
<xsl:template match="ItemService[not(generate-id(.) = generate-id(key('item-by-service', Product/service)[1]))]"/>
</xsl:stylesheet>
重要事项:
XML区分大小写:Service
与service
不同,</product>
不关闭<Product>
。