我正在尝试创建json数据以通过 HTTP POST 请求发送到服务器。服务器只会接受特定格式的 JSON,否则会返回错误。我可以成功创建 JSON 文件并将其上传到服务器,但是我收到以下错误,因为我没有错误地格式化我的 JSON:
JSON Error Message: {
code = "-2";
message = "Validation error: {\"message\":{\"to\":[\"Please enter an array\"]}}";
name = ValidationError;
status = error;
}
如您所见,服务器需要具有值和键数组的复杂 JSON 格式,但我不知道该怎么做。以下是我当前创建 JSON 数据的代码:
//Create Array With TO Values
NSDictionary *toField = @{@"email" : emailField.text};
//Create Dictionary Values
NSDictionary *messageContent = @{@"subject" : @"APPNAME Registration Complete", @"from_email" : @"email@domain.com", @"to" : toField};
NSDictionary *mandrillValues = @{@"key" : @"APPKEY",
@"redirect_url" : @"PRIVATE-URL",
@"template_name" : @"app-registration",
@"template_content" : [NSNull null],
@"message" : messageContent
};
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:mandrillValues options:NSJSONWritingPrettyPrinted error:nil];
根据服务器,我需要一个包含键和值的数组,类似于nsdictionary。但是,当我使用 NSArray 时,我无法添加值/键。关于我应该如何做这件事的任何想法?下面是服务器将接受的 JSON 格式的示例,我是否正确地遵循这种格式?如果没有,我需要更改什么以匹配格式?
{
"key": "example key",
"template_name": "example template_name",
"template_content": [
{
"name": "example name",
"content": "example content"
}
],
"message": {
"text": "example text",
"subject": "example subject",
"from_email": "message.from_email@example.com",
"from_name": "example from_name",
"to": [
{
"email": "example email",
"name": "example name"
}
],
}}