本文介绍了以Json格式iOS发布请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是iOS的新手,我必须以 json
格式发送帖子请求。喜欢,
I am new in iOS i have to send post request in json
format. like,
{"user":{"email":"[email protected]"}}
我的编码就像是,
NSMutableDictionary *postDict = [[NSMutableDictionary alloc]init];
[postDict setValue:@"[email protected]" forKey:@"email"];
// [postDict setValue:text_password.text forKey:@"password"];
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:postDict options:0 error:nil];
NSString *stringData = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
我得到输出
{"email":"[email protected]"}
请让我知道如何添加 {user:
谢谢。
推荐答案
制作一个字典并将第一个字典传递给第二个你得到格式的字典
make One more Dictionary and pass first one dictionary into second you got your format
NSMutableDictionary *firstDic=[[NSMutableDictionary alloc]init];
[data setValue:@"[email protected]" forKey:@"email"]; NSMutableDictionary
*secondDic=[[NSMutableDictionary alloc]init];
[userInfo setValue:firstDic forKey:@"user"];
希望这是有帮助的
这篇关于以Json格式iOS发布请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!