我正在尝试使用 XSLT 3.0 将给定的 json 数据从一种形式转换为另一种形式。我正在使用 XSLT 3.0 提供的 json-to-xml 和 xml-to-json 函数将数据从 .to json 转换为/从 xml 。
我有以下 json 数据。
{
"id": "123456",
"result": "Success"
}
我正在尝试使用 XSLT 3.0 将其转换为以下形式
[
{
"key":"id",
"value":"123456"
},
{
"key":"result",
"value":"Success"
}
]
我在 XSLT 以下。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
version="3.0"
xmlns="http://www.w3.org/2005/xpath-functions"
xpath-default-namespace="http://www.w3.org/2005/xpath-functions"
expand-text="yes">
<xsl:param name="json"/>
<xsl:output method="text"/>
<xsl:mode on-no-match="shallow-skip"/>
<xsl:template match="/" name="init">
<xsl:variable name="json-xml" select="json-to-xml($json)"/>
<xsl:variable name="transformed-json-xml">
<map>
<xsl:apply-templates select="$json-xml//map"/>
</map>
</xsl:variable>
<xsl:value-of select="xml-to-json($transformed-json-xml, map { 'indent' : true() })"/>
</xsl:template>
<xsl:template match="map[string[@key = 'id'] and string[@key = 'result']]">
<string key="key">id</string>
<string key="value">{string[@key = 'id']}</string>
</xsl:template>
</xsl:stylesheet>
但它只生产一个对象
{ "key" : "id",
"value" : "123456" }
谁能指出我需要进行更改的地方?