IMvcBuilder.AddJsonOptions 方法在 .NET Core 3.0 及更高版本中的棄用
將您的 ASP.NET Web API 專案從 .NET Core 2.0 升級到 3.0 後,您可能會遇到錯誤「'IMvcBuilder' does not contain a definition for 'AddJsonOptions'」。這是因為 Microsoft.AspNetCore.Mvc.Formatters.Json 套件中 AddJsonOptions 擴充方法已棄用。
在 .NET Core 3.0 中,ASP.NET Core 團隊不再預設包含 Json.NET。引入的新 JSON API 提供了更高的效能。但是,Json.NET 可以在 ASP.NET Core 3.0 專案中重新實作。
要使用 Json.NET 重新配置您的項目,請新增 NuGet 套件 Microsoft.AspNetCore.Mvc.NewtonsoftJson。然後,在您的 Startup 的 ConfigureServices 方法中,使用下列步驟設定 MVC:
<code class="language-csharp">services.AddControllers().AddNewtonsoftJson();</code>
您也可以使用 AddNewtonsoftJson 方法的重載來設定 Json.NET 選項,就像您在 ASP.NET Core 2.x 中使用 AddJsonOptions 一樣。
<code class="language-csharp">services.AddControllers().AddNewtonsoftJson(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver());</code>
透過遵循這些步驟,您可以在 .NET Core 3.0 中擷取 AddJsonOptions 方法先前提供的功能,同時整合新 JSON API 的效能增強。
以上是如何在 .NET Core 3.0 及更高版本中替換 IMvcBuilder.AddJsonOptions?的詳細內容。更多資訊請關注PHP中文網其他相關文章!