删除 XSLT 3.0 xml-to-json 转换结果中的引号
Remove quotes in result of XSLT 3.0 xml-to-json conversion
我是 XSLT 新手..
我正在进行 xml 到 json 的转换,因为我正在使用映射函数以键和值格式显示。
这是我的代码
<map>
<string key="isEmpty">
<xsl:text>true</xsl:text>
</string>
</map>
它的给予
{
"isEmpty":"true"
}
我要展示
{
"isEmpty":true
}
我想知道如何 remove/print 不带引号的布尔值。
使用<boolean key="IsEmpty">true</boolean>
、https://xsltfiddle.liberty-development.net/3Mvnt3s。
我是 XSLT 新手..
我正在进行 xml 到 json 的转换,因为我正在使用映射函数以键和值格式显示。
这是我的代码
<map>
<string key="isEmpty">
<xsl:text>true</xsl:text>
</string>
</map>
它的给予
{
"isEmpty":"true"
}
我要展示
{
"isEmpty":true
}
我想知道如何 remove/print 不带引号的布尔值。
使用<boolean key="IsEmpty">true</boolean>
、https://xsltfiddle.liberty-development.net/3Mvnt3s。