当密钥不是字符串时,iOS HTTP Post方法不起作用

时间:2016-03-24 07:31:17

标签: ios objective-c http-post nsurlconnection

我正在使用Post方法将用户数据发送到服务器。

NSMutableArray *RegistraionKeys=[NSMutableArray arrayWithObjects:@"user[first_name]",@"user[last_name]",@"user[user_profile_attributes][date_of_birth]",@"user[user_profile_attributes][address]",@"user[user_profile_attributes][country]", @"user[user_profile_attributes][phone]", @"user[user_profile_attributes][gender]", nil];

NSMutableArray *RegistraionValues=[NSMutableArray arrayWithObjects:@"aaa", @"GS", @"1987-07-19", @"bbb",@"IND", @"1234567890", @"male",nil];

NSDictionary *userRegistrationDictionary = [[NSDictionary alloc]initWithObjects:RegistraionValues forKeys:RegistraionKeys];

NSData *postData = [NSJSONSerialization dataWithJSONObject:userRegistrationDictionary options:0 error:&error];
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:method];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:@"en" forHTTPHeaderField:@"LOCALE"];

[request setHTTPBody:body];

NSURLSessionDataTask *uploadTask = [sessionManager dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
    NSDictionary *results;
    if (data) {
        results =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
    }
}];

这里我有一些键,例如“user [first_name],user [last_name] ..etc”。如果它只是“first_name”,那么我可以将此键作为字符串传递。但是“first_name”在“user”下,所以我像“user [first_name]”一样通过了。

此代码无效,无法将数据更新到服务器中。如果密钥是这样的话,我想知道传递数据的正确方法(“user [first_name]”)。

注意:“first_name”位于“user”

有谁可以帮我解决这个问题?

提前致谢。

1 个答案:

答案 0 :(得分:1)

您的问题在这里:

NSMutableArray *RegistraionKeys=[NSMutableArray arrayWithObjects:@"user[first_name]",@"user[last_name]",@"user[user_profile_attributes][date_of_birth]",@"user[user_profile_attributes][address]",@"user[user_profile_attributes][country]", @"user[user_profile_attributes][phone]", @"user[user_profile_attributes][gender]", nil];

NSMutableArray *RegistraionValues=[NSMutableArray arrayWithObjects:@"aaa", @"GS", @"1987-07-19", @"bbb",@"IND", @"1234567890", @"male",nil];

NSDictionary *userRegistrationDictionary = [[NSDictionary alloc]initWithObjects:RegistraionValues forKeys:RegistraionKeys];

我跳过两个var以大写字母开头的事实。

好吧,如果您阅读一些关于JSON的内容,或者您​​在Objective-C中使用了简短的语法(它也存在于其他语言中),您可以假设实际上您的Web服务正在等待类似的事情:

NSDictionary *userRegistrationDictionary = @{@"user":@{@"first_name":@"aaa",
                                                       @"last_name":@"GS",
                                                       @"user_profile_attributes":@{@"date_of_birth":@"1987-07-19",
                                                                                    @"address":@"bbb",
                                                                                    @"country":@"IND",
                                                                                    @"phone":@"1234567890",
                                                                                    @"gender":@"male"}}};

如果您尝试将其转换为JSON,则这些是userRegistrationDictionary的结果:

$>YourFirstVersion: {
  "user[user_profile_attributes][country]" : "IND",
  "user[user_profile_attributes][gender]" : "male",
  "user[first_name]" : "aaa",
  "user[last_name]" : "GS",
  "user[user_profile_attributes][date_of_birth]" : "1987-07-19",
  "user[user_profile_attributes][phone]" : "1234567890",
  "user[user_profile_attributes][address]" : "bbb"
}
$>CorrectVersion: {
  "user" : {
    "user_profile_attributes" : {
      "gender" : "male",
      "phone" : "1234567890",
      "country" : "IND",
      "date_of_birth" : "1987-07-19",
      "address" : "bbb"
    },
    "first_name" : "aaa",
    "last_name" : "GS"
  }
}

你似乎很奇怪"。这是有效的,但不寻常。一切都处于同一水平,但ZzZ [key]似乎在寻找字典。