在 XSLT 3.0 xml-to-json() 中,将 JSON 输出设置为 null
In XSLT 3.0 xml-to-json(), set JSON output to null
我是 XSLT 新手
如何在 xslt 值中设置 null。
<string key= "Worker">
<xsl:text></xsl:text>
</string>
输出:-
{
"Worker":""
}
我期望值为 null 而不是双引号。
预期输出:-
{
"Worker":null
}
使用
<null key="Worker"/>
规格在 https://www.w3.org/TR/xpath-functions-31/#func-xml-to-json
我是 XSLT 新手
如何在 xslt 值中设置 null。
<string key= "Worker">
<xsl:text></xsl:text>
</string>
输出:-
{
"Worker":""
}
我期望值为 null 而不是双引号。
预期输出:-
{
"Worker":null
}
使用
<null key="Worker"/>
规格在 https://www.w3.org/TR/xpath-functions-31/#func-xml-to-json