c# json 序列化时遇到错误 error Self referencing loop detected for type
Posted 大稳·杨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# json 序列化时遇到错误 error Self referencing loop detected for type相关的知识,希望对你有一定的参考价值。
参考网址:http://blog.csdn.net/adenfeng/article/details/41622255
在写redis缓存帮助类的时候遇到的这个问题,本来打算先序列化一个实体为json字符串,存储到redis中。
在序列化的时候就报错了:error Self referencing loop detected for type,从网上看到了这个解决方案。
在序列化的时候加上后面的设置,就可以了,不会序列化实体中实体了。
var json = JsonConvert.SerializeObject(data, new JsonSerializerSettings { ReferenceLoopHandling = ReferenceLoopHandling.Ignore//忽略实体中实体,不再序列化里面包含的实体 });
以上是关于c# json 序列化时遇到错误 error Self referencing loop detected for type的主要内容,如果未能解决你的问题,请参考以下文章
使用 ChoiceField 时,类型错误对象不是 JSON 可序列化的