全局应用Json序列化设置

时间:2018-09-24 10:08:51

标签: c# asp.net-core asp.net-core-2.0

我想在.Net Core 2.0 Web API项目上全局应用json设置。

我在startup.cs的ConfigureServices(IServiceCollection服务)上具有以下代码。

services.AddMvc()
    .AddJsonOptions(option =>
    {
        option.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
    });

但仍然出现错误:

  

检测到属性的自引用循环。

0 个答案:

没有答案