JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的

异常消息:JsonException: A possible object cycle was detected which is not supported. This can either be due to a cycle or if the object depth is larger than the maximum allowed depth of 32.

译文:JsonException:检测到可能的对象循环,这是不受支持的。这可能是由于循环,或者如果对象深度大于32的最大允许深度。 

如图:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第1张图片

在控制器方法中返回DataTable:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第2张图片

控制器调用方法大致如下:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第3张图片

经过异常消息分析后,发现默认使用的是:System.Text.Json 进行的序列化操作,经过调试代码发现System.Text.Json 默认最大深度32,默认值为0表示最大深度为64,如下图:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第4张图片

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第5张图片

 上图译文:获取或设置序列化或反序列化JSON时允许的最大深度,默认值为0表示最大深度为64。

修改Startup->ConfigureServices方法如下:

原方法:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第6张图片

修改后:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第7张图片

运行控制器方法:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第8张图片 结果返回很多DataTable属性,是前端根本不需要的,由于System.Text.Json对于DataSet、DataTable 不是很友好,System.Text.Json(从 .NET Core 3.1 开始),为了能够序列化这些类型,您需要为JsonConverter您需要的类型实现自己的类型并在JsonSerializerOptions,详见文档:如何编写用于 JSON 序列化的自定义转换器 - .NET | Microsoft Learn

转变方向,使用 Microsoft.AspNetCore.Mvc.NewtonsoftJson,再次修改Startup->ConfigureServices方法如下:

JsonException: A possible object cycle was detected which is not supported 检测到可能的对象循环,这是不受支持的_第9张图片

返回结果:

 序列化结果一切正常,希望本文对你有帮助。 

你可能感兴趣的:(.Net,Core,.netcore)