我将ASP.NET Core 2.2 API更新为ASP.NET Core 3.0,并且正在使用System.Json:
services
.AddMvc()
.SetCompatibilityVersion(CompatibilityVersion.Version_3_0)
.AddJsonOptions(x => {})
然后,我尝试使用以前使用过的Angular 8发布JSON数据:
{
"name": "John"
"userId": "1"
}
ASP.NET Core 3.0 API中的模型是:
public class UserModel {
public String Name { get; set; }
public Int32? UserId { get; set; }
}
API Controller的操作如下:
[HttpPost("users")]
public async Task<IActionResult> Create([FromBody]PostModel) {
}
提交模型时,出现以下错误:
The JSON value could not be converted to System.Nullable[System.Int32].
使用System.Json代替Newtonsoft时是否需要做其他事情?
答案 0 :(得分:10)
Microsoft已从ASP.NET Core 3.0中删除了Json.NET依赖关系,现在使用System.Text.Json命名空间进行序列化,反序列化等等。
您仍然可以将应用程序配置为使用Newtonsoft.Json。为此-
安装Microsoft.AspNetCore.Mvc.NewtonsoftJson NuGet软件包
在ConfigureServices()中,添加对AddNewtonsoftJson()-
的调用 services.AddControllers().AddNewtonsoftJson();
详细了解https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-apis/
答案 1 :(得分:3)
在这里,您通过json传递了UserId的字符串值,但是您的模型引用了int32? UserId的值。那么您的值如何从字符串转换为int32?