通常,由于两种语言的差异及其表达能力,XML 文档和 JSON 对象之间不存在 1:1 的映射关系。
这就是说,在您的特定情况下,这种转换:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vQ">"</xsl:variable>
<xsl:template match="/*">
{ "root" : { "section" :
<xsl:apply-templates select="section[1]/*"/>
}}
</xsl:template>
<xsl:template match="item">
{ "item" :
[<xsl:text/>
<xsl:apply-templates select="../../*/item" mode="data"/>
]
}
</xsl:template>
<xsl:template match="item" mode="data">
<xsl:if test="position() > 1">, 
		 </xsl:if>
<xsl:text>{</xsl:text><xsl:apply-templates select="@*|*"/>}<xsl:text/>
</xsl:template>
<xsl:template match="item/@* | item/*">
<xsl:if test="position() > 1">, </xsl:if>
<xsl:value-of select='concat($vQ, name(), $vQ, " : ", $vQ, ., $vQ)'/>
</xsl:template>
</xsl:stylesheet>
应用于提供的 XML 文档时:
<root>
<section>
<item name="a">
<uuid>1</uuid>
</item>
</section>
<section>
<item name="b">
<uuid>2</uuid>
</item>
</section>
</root>
产生想要的结果:
{ "root" : { "section" :
{ "item" :
[{"name" : "a", "uuid" : "1"},
{"name" : "b", "uuid" : "2"}
]
}
}}