JSON NO_REFERENCES
我刚刚开始使用 JSON... 我在我的项目(Spring)中使用它。 我正在使用 XStream 制作 JSON 字符串... 我在XStream的教程中发现使用JSON,我们必须将其模式设置为NO_REFERENCES。 我尝试在各个网站上搜索它的原因,但我没有在任何地方找到它...... 我尝试将其从我的代码中删除... 但这也没有对我的输出产生任何影响...... 那么,告诉我为什么我们必须将其模式设置为 NO_REFERENCES?
I have just started using JSON...
I am using it in my project (Spring).
I am making JSON string using XStream...
I found in tutorial of XStream that using JSON, we have to set it's mode to NO_REFERENCES.
I tried out searching it's reason on various sites, but I didn't find it anywhere...
I tried removing it from my code...
But that also did not had any effect on my output...
So, tell me why we have to set it's mode to NO_REFERENCES?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为,正如教程所说,JSON 没有处理引用的机制;重复项必须明确写出。如果
foo
和bar
都指向baz
,那么baz
将被写入两次;一次在foo
下,一次在bar
下。Because, as the tutorial says, JSON has no mechanism for handling references; duplicates must be explicitly written out. If both
foo
andbar
point tobaz
, thenbaz
will get written twice; once underfoo
and once underbar
.