美文网首页
json字符串转字典

json字符串转字典

作者: 哈利波特会魔法 | 来源:发表于2018-05-18 16:02 被阅读0次

    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"}
    

    就可以解析了。

    相关文章

      网友评论

          本文标题:json字符串转字典

          本文链接:https://www.haomeiwen.com/subject/jcvgdftx.html