在调用JSONObject.toJSONString(data)方法是,当两个Json对象属性中引用了同一个对象,除了第一个对象会正常显示,其他的引用会用 “$ref”代替。可以通过传第二个参数避免这种情况
JSONObject.toJSONString(json, SerializerFeature.DisableCircularReferenceDetect)
参考:https://blog.csdn.net/xu_xiao_ji/article/details/52020941
在调用JSONObject.toJSONString(data)方法是,当两个Json对象属性中引用了同一个对象,除了第一个对象会正常显示,其他的引用会用 “$ref”代替。可以通过传第二个参数避免这种情况
JSONObject.toJSONString(json, SerializerFeature.DisableCircularReferenceDetect)
参考:https://blog.csdn.net/xu_xiao_ji/article/details/52020941