是否可以在 ColdFusion Fusion 8 中将 XML 字符串转换为 JSON
我遇到的情况是,我收到一个包含 XML 字符串的查询。我应该将其转换为 json。
我编写了一个小型 CF 函数,它遍历/解析 XML 并方便地将其转换为 json。现在的问题是,XML 模式已更改,这迫使我重新编写 CF 函数以适应新模式。
有没有更好/通用的方法将 XML 转换为 json? (不过使用 ColdFusion!)
I'm in a situation, where i receive a query containing XML string. I'm supposed to convert it to json.
I wrote a small CF Function, that traverses/parse through the XML and conveniently transforms it into a json. Now the problem is, the XML schema has been changed, which is forcing me to re-write the CF function to suit the new schema.
Is there a more better/generic way of converting XML into json? (using ColdFusion though!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有 XSLTJSON。
下载 XSLT 样式表并将其与 ColdFusion 的
XmlTransform() 一起使用
函数。There is XSLTJSON.
Download the XSLT stylesheet and use it with ColdFusion's
XmlTransform()
function.今天开始工作,必须导入当前的 Saxon 库并编写一个小的 java 帮助程序文件。
Got this working today, had to import the current Saxon libs and write a small java helper file.