XML 包含 JSON 并包含数组:遍历该数组

XML which has JSON with an array inside of it: iterate throught that array

提问人:Mohil M 提问时间:10/22/2023 最后编辑:user207421Mohil M 更新时间:10/22/2023 访问量:65

问:

我有这个XML:

<root>
"countryList":
[
{
"countryName": "UK",
"countryId": "909",
"countryCapital": "london"
},
{
"countryName": "India",
"countryId": "910",
"countryCapital": "Delhi"
}
]
</root>

我需要遍历这个数组以获得以下 json 输出:

{
"countries":
[
{
"Name": "UK",
"Id": "909",
"Capital": "london"
},
{
"Name": "India",
"Id": "910",
"Capital": "Delhi"
}
]
}

有人可以帮我实现同样的目标吗?赞赏!

到目前为止,我尝试的是:

 <xsl:text>{ countries: </xsl:text>
 <xsl: for-each = ="substring-before(substring-after(., '&quot;countryList&quot;: '), ',')" >
 <xsl:text>{ Name: </xsl:text>
    <xsl:value-of select="substring-before(substring-after(., '&quot;countryName&quot;: '), ',')"/>
<xsl:text>, Id: </xsl:text>
<xsl:value-of select="substring-before(substring-after(., '&quot;countryId&quot;: '), ',')"/>
<xsl:text>} </xsl:text>
</xsl: for-each>
    
json xml xslt xslt-1.0 xsl-fo

评论

0赞 Jim Garrison 10/22/2023
这不是格式正确的 JSON。它必须以 或 开头{[
0赞 Mark Schultheiss 10/22/2023
只需将 和 替换为 和<root></root>{}

答:

2赞 michael.hor257k 10/22/2023 #1

在 XSLT 1.0(或 XSLT 2.0)中使用字符串操作处理 JSON 不是一个可靠的过程。相同的 JSON 内容可以通过多种方式进行格式化(尤其是空格字符),并且旨在处理一种表单的算法很容易因另一种表单而失败。

以下内容应该适用于您发布的示例。但是,更好的解决方案是迁移到 XSLT 3.0,其中可以本机引入和处理 JSON。

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="UTF-8"/>

<xsl:template match="/root">
    <xsl:text>{&#10;"countries"</xsl:text>
        <xsl:call-template name="replace">
            <xsl:with-param name="text" select="substring-after(., '&quot;countryList&quot;')"/>
        </xsl:call-template>
    <xsl:text>}</xsl:text>
</xsl:template>

<xsl:template name="replace">
    <xsl:param name="text"/>
    <xsl:param name="search-string">&#10;"country</xsl:param>
    <xsl:param name="replace-string">&#10;"</xsl:param>
    <xsl:choose>
        <xsl:when test="contains($text, $search-string)">
            <xsl:value-of select="substring-before($text, $search-string)"/>
            <xsl:value-of select="$replace-string"/>
            <xsl:call-template name="replace">
                <xsl:with-param name="text" select="substring-after($text, $search-string)"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$text"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

</xsl:stylesheet>

评论

0赞 Mohil M 10/22/2023
嘿,这就像一个魅力,非常感谢!
0赞 michael.hor257k 10/23/2023
要使用多对查找/替换值执行多次替换,请参阅以下答案:stackoverflow.com/a/60815422/3016153
0赞 Mohil M 10/24/2023
我使用以下内容替换两个字符串 - 例如 countryName 和 CName 和 countryId 和 CID: 但看起来这不起作用<xsl:when test="contains($text, $search-string)"> <xsl:value-of select="substring-before($text, $search-string)"/> <xsl:value-of select="$replace-string"/> <xsl:call-template name="replace"> <xsl:with-param name="text" select="substring-after($text, $search-string)"/> <xsl:with-param name="text2" select="substring-after($text, $search-string-2)"/> </xsl:call-template> </xsl:when>
0赞 michael.hor257k 10/24/2023
最好将其作为新问题与您的新要求一起发布。
0赞 Mohil M 10/24/2023
是的,它就在这里 stackoverflow.com/questions/77347886/......