asp.net-core – Controller.json设置Serialization.ReferenceLoopHandling

前端之家收集整理的这篇文章主要介绍了asp.net-core – Controller.json设置Serialization.ReferenceLoopHandling前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法设置Controller.Json ReferenceLoopHandling属性

当解析具有两端定义的导航属性的实体时,它当前正在引发自引用循环.通过设置解决了这个问题

ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;

有没有办法为Controller.Json方法执行此操作?

我找到了这段代码,但似乎没有用.

services.Configure<MvcOptions>(option =>
        {
            option.OutputFormatters.Clear();
            var jsonOutputFormatter = new JsonOutputFormatter();
            jsonOutputFormatter.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;

            option.OutputFormatters.Insert(0,jsonOutputFormatter);
        });

解决方法

我认为一个更漂亮的解决方案是在您的ConfigureServices中添加JsonOptions,如:
services.AddMvc().AddJsonOptions(options =>
{
    options.SerializerSettings.ReferenceLoopHandling = 
                               Newtonsoft.Json.ReferenceLoopHandling.Ignore;
});
原文链接:https://www.f2er.com/aspnet/251237.html

猜你在找的asp.Net相关文章