有人能帮我做以下事情吗?
我需要转换
<categories type="array">
<category type="array">
<category-name><![CDATA[Categories]]></category-name>
<category-name><![CDATA[BAGS & TRIPODS]]></category-name>
<category-name><![CDATA[Bags & Cases]]></category-name>
<category-name><![CDATA[soft cases]]></category-name>
<category-name><![CDATA[camera]]></category-name>
</category>
</categories>
进入
<Category>
<Name>BAGS & TRIPODS</Name>
<Category>
<Name>Bags & Cases</Name>
<Category>
<Name>soft cases</Name>
<Category>
<Name>camera</Name>
</Category>
</Category>
</Category>
</Category>
这必须在XSLT1.0中。谢谢
你的意思是想把一个平面序列变成一个树,其中每个父节点只有一个子节点?
在父元素的模板中,不将模板应用于所有子元素,而仅应用于第一个子元素:
<xsl:template match="category[@type='array']">
<xsl:apply-templates select="*[1]"/>
</xsl:template>
然后,在每个子级的模板中,通过写出一个新的Category元素及其Name来处理该子级,然后将模板应用于下面的同级:
<xsl:template match="category-name">
<Category>
<Name>
<xsl:apply-templates/>
</Name>
<xsl:apply-templates select="following-sibling::*[1]"/>
</Category>
</xsl:template>
在您的示例中,数组中的初始项似乎已删除;我们需要特殊代码:
<xsl:template match="category-name
[normalize-space = 'Categories']">
<xsl:apply-templates select="following-sibling::*[1]"/>
</xsl:template>
总之:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="category[@type='array']">
<xsl:apply-templates select="*[1]"/>
</xsl:template>
<xsl:template match="category-name[normalize-space = 'Categories']">
<xsl:apply-templates select="following-sibling::*[1]"/>
</xsl:template>
<xsl:template match="category-name">
<Category>
<Name>
<xsl:apply-templates/>
</Name>
<xsl:apply-templates select="following-sibling::*[1]"/>
</Category>
</xsl:template>
</xsl:stylesheet>
根据您的输入,这将产生以下内容:
<Category>
<Name>Categories</Name>
<Category>
<Name>BAGS & TRIPODS</Name>
<Category>
<Name>Bags & Cases</Name>
<Category>
<Name>soft cases</Name>
<Category>
<Name>camera</Name>
</Category>
</Category>
</Category>
</Category>
</Category>