我正在尝试使用xml-to-json函数将XML数据转换为XSLT 3.0中的JSON。 任何人都可以根据以下要求提供Xslt 3.0。
示例XML是:
<widget>
<debug>on</debug>
<window title="Sample Konfabulator Widget">
<name>main_window</name>
<width>500</width>
<height>500</height>
</window>
<image src="Images/Sun.png" name="sun1">
<hOffset>250</hOffset>
<vOffset>250</vOffset>
<alignment>center</alignment>
</image>
<text data="Click Here" size="36" style="bold">
<name>text1</name>
<hOffset>250</hOffset>
<vOffset>100</vOffset>
<alignment>center</alignment>
<onMouseUp>
sun1.opacity = (sun1.opacity / 100) * 90;
</onMouseUp>
</text>
我期望的json输出是:
{"widget": {
"debug": "on",
"window": {
"title": "Sample Konfabulator Widget",
"name": "main_window",
"width": 500,
"height": 500
},
"image": {
"src": "Images/Sun.png",
"name": "sun1",
"hOffset": 250,
"vOffset": 250,
"alignment": "center"
},
"text": {
"data": "Click Here",
"size": 36,
"style": "bold",
"name": "text1",
"hOffset": 250,
"vOffset": 100,
"alignment": "center",
"onMouseUp": "sun1.opacity = (sun1.opacity / 100) * 90;"
}
}}
先谢谢
答案 0 :(得分:1)
您需要将XML转换为xml-to-json函数所需的XML词汇表,您可以使用模板规则来执行此操作,例如
<xsl:template match="*[*|@*]" mode="to-json">
<fn:map key="{local-name()}">
<xsl:apply-templates select="@*, *" mode="to-json"/>
</fn:map>
</xsl:template>
<xsl:template match="@* | *[not(*)]" mode="to-json">
<fn:string key="{local-name()}">
<xsl:value-of select="."/>
</fn:string>
</xsl:template>
然后将此转换的结果传递给xml-to-json函数。
详细信息取决于您要对名称空间执行的操作,您希望如何检测元素/属性应被视为数字或布尔值,是否要生成null或&#34;&#34;对于空元素等