0

我正在尝试使用 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" }

谁能指出我需要进行更改的地方?

4

1 回答 1

0

好吧,如果您想要一个数组作为外部 JSON 结构,您需要更改

<xsl:variable name="transformed-json-xml">
 <map>
  <xsl:apply-templates select="$json-xml//map"/>
 </map>

<xsl:variable name="transformed-json-xml">
 <array>
  <xsl:apply-templates select="$json-xml//map"/>
 </array>

对于您想要的地图

<xsl:template match="map[string[@key = 'id'] and string[@key = 'result']]">
  <xsl:apply-templates/>
</xsl:template>

  <xsl:template match="string">
    <map>
      <string key="key">{@key}</string>
      <string key="value">{.}</string>
    </map>
  </xsl:template>
于 2021-09-13T14:09:38.573 回答