TouchXML 使用不带引号的键解析响应
有没有办法使用 TouchXML 来解析 json,其中密钥没有被引用,如下所示:
{ foo:"bar" }
我正在尝试解析来自 web 服务(google)的响应,因此简单地将 JSON 代码修复为有效不是一个选项。
如果不可能,有没有办法有效地引用键作为预处理步骤?
Is there a way to use TouchXML to parse json in which the key are not quoted, like this:
{ foo:"bar" }
I'm trying to parse the response from a webservice (google), so simply fixing the JSON code to be valid is not an option.
If it's not possible, is there a way to efficiently quote the keys as a preprocessing step?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我决定使用 RegexKitLite 对其进行预解析,使用
I decided to pre-parse it with RegexKitLite, using