Json序列化循环引用的问题
Posted 杨浪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Json序列化循环引用的问题相关的知识,希望对你有一定的参考价值。
今天在发布接口的时候出突然出现了一个问题,报错代码为:
1 An exception has occurred while using the formatter \'JsonMediaTypeFormatter\' to generate sample for media type \'application/json\'. 2 Exception message: Self referencing loop detected for property \'******\' with type \'******\'. Path \'[0].******[0]\'.
经过研究,解决方法如下:
找到相应的属性,添加 attribute:[IgnoreDataMember]
还有时候会出现特殊情况,即使标记以上的attribute也不能解决
具体错误为:
Newtonsoft.Json.JsonSerializationException 时 Self referencing loop detected for property *****
可以在web api的config中(WebApiConfig.cs)添加一下代码,用以过滤掉此问题
奉上代码:
1 config.Formatters.JsonFormatter.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
以上是关于Json序列化循环引用的问题的主要内容,如果未能解决你的问题,请参考以下文章
解决MVC Json序列化的循环引用问题/EF Json序列化循引用问题---Newtonsoft.Json
解决MVC Json序列化的循环引用问题/EF Json序列化循引用问题---Newtonsoft.Json