解析 JSON 数组

发布于 2024-07-19 06:12:18 字数 264 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

难理解 2024-07-26 06:12:18

您是否考虑过尝试另一个框架? 这个似乎支持 JSON 数组。

Have you consider trying another framework? This one seems to support JSON arrays.

酷炫老祖宗 2024-07-26 06:12:18

也许您可以使用 JSON 主页上列出的众多 JSON 实现中的另一个。

Maybe you could use another of the many JSON implementations listed on the JSON homepage.

从﹋此江山别 2024-07-26 06:12:18

您可以查看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文