使用 JSONKit 处理 WordPress JSON 响应

发布于 2024-12-04 16:17:27 字数 557 浏览 1 评论 0原文

我使用 JSONKit 解析来自 WordPress 博客的数据。

NSData *wp_json = [NSURLConnection sendSynchronousRequest: request returningResponse:&response error:&err];
NSDictionary *posts = [wp_json objectFromJSONData]

收到的数据是 JSON,所以当我这样做时,它工作得很好

NSLog(@"%@",[posts objectForKey:@"count"]);

,然后我想访问帖子,但有问题帖子是一个子 json(如果我可以这么说)并且有 X 个帖子,所以我可以获得一个大字符串所有代码,我不知道如何仅获取第一篇文章的 id,然后获取第二篇文章的 id。

我怎样才能做到这一点?

JSON 响应看起来像这样,因此更容易理解。

I use JSONKit to parse data from a wordpress blog.

NSData *wp_json = [NSURLConnection sendSynchronousRequest: request returningResponse:&response error:&err];
NSDictionary *posts = [wp_json objectFromJSONData]

the data received is JSON so when I do this it works perfectly

NSLog(@"%@",[posts objectForKey:@"count"]);

then I want to access the posts and there is the problem posts is a sub json (if I can say that) and there is X posts so I can get a big string with all the code and I don't know how to get only the id for the first post then the id for the 2nd post.

How can I do that?

The JSON response looks like this so it will be easier to understand.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

薄情伤 2024-12-11 16:17:27

您返回的原始 JSON 只是一个字典,而帖子是该字典中保存的数组。

NSDictionary * JSONResponse = [wp_json objectFromJSONData];
NSArray * posts = [JSONResponse objectForKey:@"posts"];

该数组中的每个元素都是另一个字典,但这次代表一篇文章。您可以迭代它,对每个帖子执行您想要的操作,如下所示:

for(NSDictionary * post in posts) {
    //do what you want to do for each post, e.g.
    NSNumber *postId = [post objectForKey:@"id"];
}

Your raw JSON you get back is simply a dictionary, and the posts are an array held in that dictionary.

NSDictionary * JSONResponse = [wp_json objectFromJSONData];
NSArray * posts = [JSONResponse objectForKey:@"posts"];

Each element in that array is yet another dictionary, but this time representing a post. You can iterate through it to do what you want with each post like so:

for(NSDictionary * post in posts) {
    //do what you want to do for each post, e.g.
    NSNumber *postId = [post objectForKey:@"id"];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文