在 XSLT 3.0(例如使用 Saxon-JS)中,您可以转换此 JSON:
{
"A": "TestA",
"B": "TestB",
"C": ["TestC1", "TestC2"]
"D": "TestD"
}
到这个 XML:
<doc>
<A>TestA</A>
<B>TestA</B>
<C>TestA</C>
<C>TestA</C>
<D>TestA</D>
</doc>
与逻辑:
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:map="http://www.w3.org/2005/xpath-functions.map"
version="3.0"
expand-text="yes">
<xsl:template name="xsl:initial-template">
<doc>
<xsl:variable name="json" select="parse-json('my-input.json')"/>
<xsl:for-each select="sort(map:keys($json))">
<xsl:element name="{.}">{$json(.)}</xsl:element>
</xsl:for-each>
</doc>
</xsl:template>
</xsl:transform>
与使用某些转换库相比,使用 XSLT 3.0 在 JSON 和 XML 之间进行转换的工作量要多一些,但优点是它可以让您完全控制输出。