在Asp.net core 3.0的webapi项目中,发送json格式的post请求后,返回的header中error提示The JSON value could not be converted to解决方法:1.安装Microsoft.AspNetCore.Mvc.NewtonsoftJson包2.在ConfigureServices中添加services.AddNewtonsoftJson(); 其他文章: 《.NET Core 内置的 System.Text.Json 使用注意》