gpt4 book ai didi

ios - 如何从 json 数组访问值

转载 作者:行者123 更新时间:2023-11-28 20:11:06 24 4
gpt4 key购买 nike

我有一些从我的服务器返回的 Json 类型的 NSData。我想知道如何访问 json 中存在的值并将它们放入自己的 NSString 对象中。

这就是 JsonArray 的结构

enter image description here

这是我正在使用的代码,但是我的 for 循环只显示“结果”,没有其他内容。

NSError *error = nil;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:csvData options: NSJSONReadingMutableContainers error: &error];
NSLog(@"%@", jsonArray);
if (!jsonArray) {
NSLog(@"Error parsing JSON: %@", error);
} else {
for(NSDictionary *item in jsonArray) {
NSLog(@"Item: %@", item);
}
}

最佳答案

你可以像这样访问它:

for (NSDictionary *dict in jsonArray)
{
NSLog(@"Data: %@", dict[@"result"]);
}

您的数组中有字典,因此您必须枚举 is 并按键访问它(结果等)。

关于ios - 如何从 json 数组访问值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20212154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com