ASP.NET Web API 利用 Json.NET 進行高效率的 JSON 序列化和反序列化。 但是,您可以自訂預設設定以滿足特定的應用程式需求。
調整 JsonSerializerSettings
要修改標準 JsonSerializerSettings,請造訪 Formatters.JsonFormatter.SerializerSettings
物件中的 HttpConfiguration
屬性。
例如,要產生帶有縮排的格式良好的 JSON 輸出:
<code class="language-csharp">protected void Application_Start() { HttpConfiguration config = GlobalConfiguration.Configuration; config.Formatters.JsonFormatter.SerializerSettings.Formatting = Newtonsoft.Json.Formatting.Indented; }</code>
這種方法允許對 JSON 序列化進行精細控制。 透過直接操作 JsonSerializerSettings
對象,開發人員可以合併類型處理、日期格式或任何其他所需的設置,確保 JSON 輸出精確匹配專案規格。
以上是如何在 ASP.NET Web API 中自訂 Json.NET 序列化?的詳細內容。更多資訊請關注PHP中文網其他相關文章!