解析 JSON 数组
我使用 touchJSON 从 Web 服务获取 JSON 数组。 看起来像这样:
[{"icecream": {"title": "Banana"}}, {"icecream": {"title": "Strawberry"}}]
我无法将其解析为 NSDictionary,因为 touchJSON 不支持 JSON 数组。
如何将 JSON 数组放入 NSDictionary 中?
问候
I fetch a JSON array from a web service with touchJSON.
Which looks like this:
[{"icecream": {"title": "Banana"}}, {"icecream": {"title": "Strawberry"}}]
I'm not able to parse this into a NSDictionary, because
touchJSON doesn't support JSON arrays.
How do I get my JSON array into a NSDicitionary?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否考虑过尝试另一个框架? 这个似乎支持 JSON 数组。
Have you consider trying another framework? This one seems to support JSON arrays.
也许您可以使用 JSON 主页上列出的众多 JSON 实现中的另一个。
Maybe you could use another of the many JSON implementations listed on the JSON homepage.
您可以查看 JSON 网页,其中提供了数十种语言的解析代码的链接。 然而,乍一看,您似乎正在尝试从一种类型的对象(JSON 数组)转换为另一种可能无法捕获所有关系(NSDictionary)的对象。 完整免责声明:我以前从未使用过 NSDictionary。
You can chekc out the JSON webpage, where they provide links to parsing code in dozens of languages. However, at first glance it looks like you're trying to munge from one type of object (the JSON Array) into another that might not be able to capture all the relationships (the NSDictionary). Full disclaimer: I've never used an NSDictionary before.