[FromBody] JObject 接收数据 报错 The JSON value could not be converted to Newtonsoft.Json.Linq.JToken
net core WebApi 使用[FromBody] JObject 接收数据 报错
使用postman 测试
查找资料后发现需要引入包Microsoft.AspNetCore.Mvc.NewtonsoftJson
然后在 Startup.cs 的ConfigureServices方法中加入
builder.Services.AddControllers().AddNewtonsoftJson(options =>
{
options.SerializerSettings.ContractResolver = new DefaultContractResolver();
});
重新生成再用postman测试 发现成功
如果需要用postman测试 需要注意把
Content-Type设为application/json
Body 选中raw 选择JSON