gpt4 book ai didi

iphone - YAJL - iOS/iPhone 上的 JSON

转载 作者:行者123 更新时间:2023-12-03 21:18:39 24 4
gpt4 key购买 nike

在我的 iPhone 应用程序中,我尝试使用 JSON 库 (YAJL) 创建一个如下格式的 JSON 字符串:

{"user": 
{"name":"Jon", "username":"jon22", "password":"passw@rd", "email":"jon22@example.com"}
}

但我无法弄清楚创建它的 YAJL 方法。

我尝试过以下方法:

 NSArray *params = [NSArray arrayWithObjects:@"Jon", @"jon22", @"passw@rd", @"jon22@gmail.com", nil];
NSArray *keys = [NSArray arrayWithObjects:@"name", @"username", @"password", @"email", nil];

NSDictionary *userDictionary = [NSDictionary dictionaryWithObjects:params forKeys:keys];
NSString *JSONString = [userDictionary yajl_JSONString];

但是,返回的字符串没有包装在外部“user”中。如何使用 YAJL 创建这个 json 字符串?有人有这方面的经验吗???

非常感谢,布雷特

最佳答案

我不使用YAJL,但是SBJSON ,这也是 Apple 在 iOS 中使用的...

无论如何,库的行为正确:您没有创建“用户”字典!

您需要执行以下操作:

NSDictionary *serialize = [NSDictionary dictionaryWithObject:userDictionary forKey:@"user"];

然后“JSON-ize”这个。

这是因为当您在 userDictionary 上调用 -yajl_JSONString 时,您正在使用 userDictionary 作为“根对象”。如果您想将其包装在另一个字典中,则需要明确执行此操作。

关于iphone - YAJL - iOS/iPhone 上的 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7326136/

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