我发送xml文件作为正文,如下所示:
[[NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><vs:ClientID version=\"0.4\" xmlns:vs=\"http://www.@@@@@@.com/schemas/store\">%@</vs:ClientID>", openUDID] UTF8String];
现在我需要为请求发送与JSON相同的主体。 我怎样才能做到这一点?
答案 0 :(得分:0)
您可以通过创建要发送的数据字典来实现此目的
NSMutableDictionary *reqDictionary = [[NSMutableDictionary alloc]init];
[reqDictionary setValue:@"yourValue1" forKey:@"YourKey1"];
[reqDictionary setValue:@"yourValue2" forKey:@"YourKey2"];
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:fieldsArray options:NSJSONWritingPrettyPrinted error:&error];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
现在jsonString是你要发布的最后一个字符串