json字符串转字典,利用 以下方式转换,发现崩在第一步了
NSData *jsonData = [dataSet.data dataUsingEncoding:NSUTF8StringEncoding];
NSError *error;
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&error];
后台给的JSON字符串数据格式为:
{
BizId = "TZBANK-0048d4b326-20180518153011";
ZimId = de3954c5819f6c931c9f001dfc886b6e;
}
这是个字典格式,发现转不过去,格式有问题,所以让他们改了一下:
{"ZimId":"d40020a8f6d3334b8d716e9464ae0c1c","BizId":"TZBANK-8e499f8ccd-20180518155708"}
就可以解析了。
网友评论