最近项目的后台要求传递参数为以下格式
image.png
第二个参数为请求所需参数的json字符串
刚开始的时候我没有注意,直接用NSDIctionary转换为NSString来传值,即:
[NSString stringWithFormat:@"%@",dic]
刚开始的几个请求都没有问题,但是今天在做一个发布类似朋友圈的功能的时候,发布上去的参数有中文,但是请求回来的数据是不带''的UNICODE编码,很蛋疼,
猜测有可能是HTTP请求的时候,过滤了一下,把我的''过滤掉了
然后百度了一个
-(NSString*)DataTOjsonString:(id)object
{
NSString *jsonString = nil;
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:object
options:NSJSONWritingPrettyPrinted // Pass 0 if you don't care about the readability of the generated string
error:&error];
if (! jsonData) {
NSLog(@"Got an error: %@", error);
} else {
jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
}
return jsonString;
}
的方法来转换json字符串
解决了
然鹅目前我还没有找到问题原因所在..............
网友评论