剑轩

.net core序列化报错JsonSerializationException: Self referencing loop detected for property

电脑版发表于:2020/1/23 22:01


在framework中可以使用如下代码解决:

context.Configuration.ProxyCreationEnabled = false;

但是在.net core中就不行了


.net core中可以使用两种方法解决,推荐方法2


方法1:

JsonSerializerSettings jsonSerializerSettings = new JsonSerializerSettings();
//解决循环引用问题
                jsonSerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
                jsonSerializerSettings.NullValueHandling = NullValueHandling.Ignore;
                string userstr = JsonConvert.SerializeObject(user, jsonSerializerSettings);
                HttpContext.Session.SetString("userInfo", userstr)


方法2:

查询的时候加上方法AsNoTracking()即可


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢