• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何在ios objective-c 中过滤Json数据

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:23:41 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

JSON 解析有问题。
我得到 JSON 数据,我想显示与 restid 匹配的项目。
我有一个 tableView 来显示不同的餐厅信息,每个餐厅也有自己的评论单元来评论这家餐厅。
所以,我会过滤 JSON 数据。
让每个餐厅评论单元都能获得自己的评论。

这是我的 JSON:

(
    {
    comment = "very good";
    food = chicken;
    name = Tom;
    restid = 1;
    score = 4;
},
    {
    comment = nice;
    food = coffee;
    name = Jack;
    restid = 3;
    score = 3;
},
    {
    comment = tasty;
    food = pizza;
    name = Mary;
    restid = 17;
    score = 5;
},
    {
    comment = unlike;
    food = none;
    name = Gigi;
    restid = 33;
    score = 1;
},
    {
    comment = delicious;
    food = juice;
    name = Bruce;
    restid = 45;
    score = 5;
}
)

这是我的代码:

它可以显示我的 tableView 中的所有数据以及不同餐厅评论单元中的所有相同数据。

- (void)getCommentInfoid)sender {

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        NSURL *url = [NSURL URLWithString"http://localhost:8888/foodComment_json.php"];

        NSData *data = [NSData dataWithContentsOfURL:url];
        NSArray *comment = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
        NSLog(@"Comment is %@",comment);

        self.commentArray = [NSMutableArray arrayWithArray:comment];

        dispatch_async(dispatch_get_main_queue(), ^{
            [self.detailCommentTableView reloadData];
        });
    });
}



Best Answer-推荐答案


试试这个,我没有测试代码,如果你有问题,请告诉我。

NSArray *filteredArray = [comment filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id elem, NSDictionary *bindings) {
    return ([elem objectForKey"restid"] == <your_rest_id>)
}]];

关于ios - 如何在ios objective-c 中过滤Json数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39201471/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap