📜  JsonException:检测到可能的对象循环.这可能是由于循环或对象深度大于最大允许深度 32.考虑在 JsonSerializerOptions 上使用 ReferenceHandler.Preserve 以支持循环.代码示例

📅  最后修改于: 2022-03-11 15:04:31.660000             🧑  作者: Mango

代码示例1
services.AddControllersWithViews()
    .AddNewtonsoftJson(options =>
    options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
);