我在使用NSJSONSerialization从PHP服务器解析JSON时遇到问题。 JSLint说我的JSON是有效的,但似乎只能获得一到两个级别。
这基本上是我的JSON结构:
{
"products":
[{
"product-name":
{
"product-sets":
[{
"set-3":
{
"test1":"test2",
"test3":"test4"
},
"set-4":
{
"test5":"test6",
"test7":"test8"
}
}]
},
"product-name-2":
{
"product-sets":
[{
}]
}
}]
}
这是我解析它的代码:
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
if (json) {
NSArray *products = [json objectForKey:@"products"]; // works
for (NSDictionary *pItem in products) { // works
NSLog(@"Product: %@", pItem); // works, prints the entire structure under "product-name"
NSArray *productSets = [pItem objectForKey:@"product-sets"]; // gets nil
for (NSDictionary *psItem in productSets) {
// never happens
}
}
}
我一直在旋转我的车轮几个小时,但我找不到任何类似的东西。是否有任何我不知道的限制,或者我只是没有看到明显的东西?
答案 0 :(得分:4)
你错过了一个嵌套对象
NSArray *productSets = [[pItem objectForKey:@"product-name"] objectForKey:@"product-sets"];
我用这个CLI程序测试了它
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
NSString *jsonString = @"{\"products\":[{\"product-name\": {\"product-sets\": {\"set-3\":{\"test1\":\"test2\", \"test3\":\"test4\"}, \"set-4\":{\"test5\":\"test6\", \"test7\":\"test8\"} }}}, {\"product-name-2\": \"2\"}]}";
// insert code here...
NSLog(@"%@", jsonString);
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] options:kNilOptions error:&error];
if (json) {
NSArray *products = [json objectForKey:@"products"]; // works
for (NSDictionary *pItem in products) { // works
NSLog(@"Product: %@", pItem); // works, prints the entire structure under "product-name"
NSArray *productSets = [[pItem objectForKey:@"product-name"] objectForKey:@"product-sets"]; // gets nil
for (NSDictionary *psItem in productSets) {
NSLog(@"%@", psItem);
}
}
}
}
return 0;
}
请注意,你的json中的一些东西很奇怪:
对于每个展平的对象,键应该是相同的。键,包括对象的数字没有多大意义。如果需要跟踪单个对象,请包含具有适当值的id键。