想请问一下 目前的问题是 我需要透过HTTP传送出JSON array的资料
但转换成NSData之后 对方收到的格式有误 想请问一下有什么解法
//很单纯的array
NSArray *array = [ [ NSArray alloc ] initWithObjects:@"aa",@"bb",nil];
NSMutableURLRequest * request = [NSMutableURLRequest
requestWithURL:[NSURL URLWithString:url]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:10];
[request setHTTPBody:[NSJSONSerialization dataWithJSONObject:array options:0 error:nil]];
想要转成下面格式 对方才能收到
[
{aa},
{bb}
]
实际上 对方收到的格式
{
{aa},
{bb}
}