在 JavaScript 中将 XML-RPC 转换为 JSON
谁能推荐一个轻量级的 JavaScript XML-RPC 库?
经过一段时间的研究后,我找不到任何让我满意的东西,所以我最终自己写了。 不过,也许这很愚蠢,因为那里一定有合适的东西!?
我自己的伪库主要缺少将 XML-RPC 响应转换为 JSON 的方法 - 或者更确切地说,将相应的 responseXML 转换为 JavaScript 对象(将 数据类型(根据需要)。 这并不难做到,但为什么要重新发明轮子......
任何帮助将不胜感激!
Can anyone recommend a lightweight JavaScript XML-RPC library?
After researching this a while ago, I couldn't find anything I was comfortable with, so I kinda ended up writing my own.
However, maybe that was stupid, as there must be something suitable out there!?
My own pseudo-library is mainly missing a way to turn an XML-RPC response into JSON - or rather, converting the respective responseXML to a JavaScript object (converting the data types as needed).
This isn't hard to do, but why reinvent the wheel...
Any help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我知道这两个库,您基本上可以使用它们将 XML-RPC 响应转换为 JSON:
I know this two libraries, that you can basically use to convert your XML-RPC responses to JSON:
这似乎做你(和我)想要的:
This seems to do what you (and I) want:
另一个小型 XML 到 JSON(反之亦然)的 JavaScript 库在这里 -> http://code.google.com/p/x2js/
Another small XML to JSON (and vice versa) JavaScript library is here -> http://code.google.com/p/x2js/
我也可以用这个。 通用 XML 到 Json 对于 XML-RPC 来说相当不方便。
I could use this too. Generic XML to Json is rather unconvenient for XML-RPC.