使用 XSLT 将 XML 转换为 JSON 并将方括号 [] 添加到 JSON

Using XSLT to transform XML to JSON and add Square bracket [] to the JSON

在使用 XSLT 进行转换后,我正在尝试 enclose/add 方括号到 Json。我希望 Json 为 list/array 形式。

下面是我的 XML 文件。

<?xml version="1.0" encoding="UTF-8"?>
<map xmlns="http://www.w3.org/2005/xpath-functions">
   <string key="foedselsdato">2019-04-22</string>
   <string key="individId">01387</string>
   <map key="varslinger"/>
</map>

下面是我的 XSL 文件。

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="3.0">
  <xsl:output omit-xml-declaration="yes"/>
  <xsl:template match="/">
      <xsl:value-of select="xml-to-json(., map { 'indent' : true() })"/>
  </xsl:template>
</xsl:stylesheet>

使用 https://xsltfiddle.liberty-development.net/b4GWVd 进行转换我得到:

{ "foedselsdato" : "2019-04-22",
    "individId" : "01387",
    "varslinger" : 
    {  } }

但我想将其转换如下:

[{ "foedselsdato" : "2019-04-22",
    "individId" : "01387",
    "varslinger" : 
    {  } }]

下面的代码有效。

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="3.0">
  <xsl:output omit-xml-declaration="yes"/>
  <xsl:template match="/">
      <xsl:text>[</xsl:text>
      <xsl:value-of select="xml-to-json(., map { 'indent' : true() })"/>
      <xsl:text>]</xsl:text>
  </xsl:template>
</xsl:stylesheet>

或者

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="3.0">
  <xsl:output omit-xml-declaration="yes"/>
  <xsl:template match="/">
      <xsl:text>[</xsl:text>
      <xsl:value-of select="concat('[',xml-to-json(., map { 'indent' : true() }))"/>
      <xsl:text>]</xsl:text>
  </xsl:template>
  </xsl:stylesheet>

如果您想在 XPath 3.1 和 XSLT 3 中使用 JSON 的 XDM 表示,您可以使用

  <xsl:output method="json" indent="yes"/>

  <xsl:template match="/">
      <xsl:sequence select="array { xml-to-json(.) => parse-json() }"/>
  </xsl:template>

将前面的JSON包装成一个数组:https://xsltfiddle.liberty-development.net/b4GWVd/81