首页 前端知识 JSON.toJSONString(jsonObject),出现 “$ref“ 解决方案

JSON.toJSONString(jsonObject),出现 “$ref“ 解决方案

2024-08-10 22:08:58 前端知识 前端哥 885 397 我要收藏

文章目录

  • 前言
  • 一、问题复现
  • 二、解决方案
  • 总结


前言

当json对象中有2个对象的值一样时,会出现 $ref ,来引用相同的值,这时去解析字符串时可能会有些问题,需要把引用去掉。


提示:以下是本篇文章正文内容,下面案例可供参考

一、问题复现

String jsonStr = "{\"rowIndex\":6,\"rowCount\":6}";
JSONObject jsonObject = JSON.parseObject(jsonStr);
System.out.println(jsonObject);
System.out.println(JSON.toJSONString(jsonObject));

// 打印的值如下
{"rowIndex":6,"rowCount":6}
{"rowIndex":6,"rowCount":{"$ref":"rowIndex"}}

二、解决方案

使用:SerializerFeature.WriteMapNullValue.getMask()

JSON.toJSONString(jsonObject, SerializerFeature.WriteMapNullValue.getMask())

String jsonStr = "{\"rowIndex\":6,\"rowCount\":6}";
JSONObject jsonObject = JSON.parseObject(jsonStr);
System.out.println(jsonObject);
System.out.println(JSON.toJSONString(jsonObject));
System.out.println(JSON.toJSONString(jsonObject, SerializerFeature.WriteMapNullValue.getMask()));

// 打印的值如下
{"rowIndex":6,"rowCount":6}
{"rowIndex":6,"rowCount":{"$ref":"rowIndex"}}
{"rowIndex":6,"rowCount":6}

注:以上场景出现$ref是使用了fastjson中出现,当使用fastjson2后可以解决。


总结

我恋的不是雪,而是有你的冬天;雪景虽美,但我的眼中却只有你。

在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/15303.html
标签
评论
发布的文章

jQuery3 学习手册(三)

2024-08-18 22:08:04

vue和jQuery有什么区别

2024-04-29 11:04:47

推荐项目:jQuery.Gantt

2024-08-18 22:08:37

jQuery UI 秘籍(一)

2024-08-18 22:08:15

jQuery详解

2024-04-29 11:04:38

echarts饼图点击图例问题

2024-08-18 22:08:48

echarts天气折线图

2024-08-18 22:08:46

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!