使用fastjson需要注意的事项

前端之家收集整理的这篇文章主要介绍了使用fastjson需要注意的事项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在测试举报项目的单聊和群聊时,出现了"$ref": "$.data.reportContent[0].FeedInfo"这样的数据,之所以出现这样的问题是因为fastjson的JSON.toJSONString默认开启了"循环引用检测"特性,加载完第一个FeedInfo对象后,当加载第二个FeedInfo对象时fastjson检测到已经加载过该对象一次了,因此不再重复加载改数据,而只是将一个指向第一个FeedInfo对象的地址赋给后面的对象,从而出现了我们看到的下面所示的数据形式。

{
    "data": {
        "handleDetail": {
            
        },"handleFeedId": "","handleReason": "","handleTime": 0,"hasHandled": 0,"illegalType": "0","pics": [
            "http://scloud.toon.mobi/f/AIvQq8lwlGH4snhbwyu7Ndib5WbC-9AS4xAiApe+WUofG.jpg"
        ],"reasonId": "16","reportContent": [
            {
                "contentOutput": {
                    "from": "c_1500459436330003","text": "不支持文件类型","type": "nonsupport","url": "http://scloud.toon.mobi/f/0T-Org7zsW6A6+V9jKji2JxevaI8ixWW4ht4nZ6ArZcfG.jpg"
                },"FeedInfo": {
                    "cardNo": "253607","FeedId": "c_1500459436330003","title": "***"
                }
            },{
                "contentOutput": {
                    "from": "c_1500459436330003","type": "nonsupport"
                },"FeedInfo": {
                    "$ref": "$.data.reportContent[0].FeedInfo"
                }
            }
        ],"reportDesc": "","reportId": "1157163647988614","reportObject": "群聊","reportPerson": [
            {
                "$ref": "$.data.reportContent[0].FeedInfo"
            }
        ],"reportTime": 1516364798614,"toonType": "100","type": 4
    },"Meta": {
        "code": 0,"message": "success"
    }
}

为了避免这种现象发生,我们在使用JSON.toJSONString时需要人为关闭"循环引用检测"特性:

String data = JSON.toJSONString(result,SerializerFeature.DisableCircularReferenceDetect);
这样便可以解决该问题了。
原文链接:https://www.f2er.com/json/288618.html

猜你在找的Json相关文章