这是我的XML -
<?xml version="1.0" encoding="UTF-8"?>
<update-all-attributes>
<document name="http://blah">
<price>111 USD</price>
<color>red</color>
<size>comfort</size>
<cost>00012-40</cost>
<shipping>US::Ground:0.00</shipping>
<cost>00012-40</cost>
<price>111 USD</price>
<color>red</color>
<size>comfort</size>
<cost>00012-40</cost>
<shipping>US::Ground:0.00</shipping>
<cost>00012-40</cost>
<price>111 USD</price>
<color>red</color>
<size>comfort</size>
<shipping>US::Ground:0.00</shipping>
<price>111 USD</price>
<color>red</color>
<size>comfort</size>
</document>
<document name="http://blahblah">
<price>110 USD</price>
<color>blue</color>
<size>super</size>
<cost>00012-41</cost>
<shipping>US::Ground:0.01</shipping>
<cost>00012-41</cost>
<price>110 USD</price>
<color>blue</color>
<size>super</size>
<shipping>US::Ground:0.01</shipping>
<cost>00012-41</cost>
<price>110 USD</price>
<color>blue</color>
<size>super</size>
<shipping>US::Ground:0.01</shipping>
<price>110 USD</price>
<color>blue</color>
<size>super</size>
</document>
</update-all-attributes>
我希望我的最终XML为
<?xml version="1.0" encoding="UTF-8"?>
<document name="http://blah">
<price>111 USD</price>
<color>red</color>
<size>comfort</size>
<cost>00012-40,00012-40,00012-40,00012-40</cost>
<shipping>US::Ground:0.00,US::Ground:0.00,US::Ground:0.00</shipping>
</document>
<document name="http://blahblah">
<price>110 USD</price>
<color>blue</color>
<size>super</size>
<cost>00012-41,00012-41,00012-41,00012-41</cost>
<shipping>US::Ground:0.01,US::Ground:0.01,US::Ground:0.01</shipping>
</document>
这是用于创建多值属性的xslt(感谢michael.hor257k)。它给了我其他属性的重复值 -
<?xml version="1.0" encoding="UTF-8"?>
<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:template match="document">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:copy-of select="@*|price"/>
<xsl:copy-of select="@*|color"/>
<xsl:copy-of select="@*|size"/>
<cost>
<xsl:for-each select="cost">
<xsl:value-of select="."/>
<xsl:if test="position() != last()">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:for-each>
</cost>
<shipping>
<xsl:for-each select="shipping">
<xsl:value-of select="."/>
<xsl:if test="position() != last()">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:for-each>
</shipping>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
如何修改我的XSLT 1.0以去除重复的属性,以及将选定的属性保持为多值?我有多个文档元素,因此它应该适用于所有文档元素。
答案 0 :(得分:1)
请花点时间,并尝试了解其工作原理的评论和机制。如果您有任何其他问题,请在评论中提问。
<?xml version="1.0" encoding="UTF-8"?>
<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="element-by-name" match="document/*" use="local-name()"/>
<!-- Copy everything, unless other templates say otherwise -->
<xsl:template match="*|@*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<!-- Skip elements if there are elements of the same name earlier in the document.
Priority is set to 1 so that this template overrides other templates
and we don't accidentally still get duplicates. -->
<xsl:template match="*[count(. | key('element-by-name', local-name())[1]) > 1]" priority="1"/>
<!-- This template is for elements we want to be multi-value -->
<xsl:template match="shipping | cost">
<xsl:copy>
<!-- We step through all elements of the same name -->
<xsl:for-each select="key('element-by-name', local-name())">
<xsl:value-of select="."/>
<xsl:if test="position() != last()">,</xsl:if>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>