bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

怎么在ASP.NETCore中使用內置的Json格式化日期

這篇文章主要介紹“怎么在 ASP.NET Core 中使用內置的 Json 格式化日期 ”,在日常操作中,相信很多人在怎么在 ASP.NET Core 中使用內置的 Json 格式化日期 問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么在 ASP.NET Core 中使用內置的 Json 格式化日期 ”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

創新互聯建站于2013年開始,是專業互聯網技術服務公司,擁有項目做網站、成都網站建設網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元澧縣做網站,已為上家服務,為澧縣各地企業和個人服務,聯系電話:028-86922220

咨詢區

D. English:

最近我正準備把一個 Asp.Net Core WebAPI 項目從 2.2 升級到 3.0,在新版本中我打算用 System.Text.Json 來替代  Newtonsoft 格式化日期,原來我的格式化寫法如下:

public void ConfigureServices(IServiceCollection services)         {             services.AddControllers().AddJsonOptions(options =>             {                 options.SerializerSettings.DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc;                 options.SerializerSettings.DateFormatString = "yyyy'-'MM'-'dd'T'HH':'mm':'ssZ";             });         }

請問我如何用新的 System.Text.Json 做等價替換呢?

回答區

D. English:

要想解決,可以自定義個 formatter,參考如下代碼:

public class DateTimeConverter : JsonConverter<DateTime> {     public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)     {         Debug.Assert(typeToConvert == typeof(DateTime));         return DateTime.Parse(reader.GetString());     }      public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options)     {         writer.WriteStringValue(value.ToUniversalTime().ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ssZ"));     } }

然后在 ConfigureServices() 中做全局注冊就可以了,如下代碼所示:

public void ConfigureServices(IServiceCollection services)    {        services.AddControllers()            .AddJsonOptions(options =>            {                options.JsonSerializerOptions.Converters.Add(new DateTimeConverter());            });    }

點評區

真巧,前幾天被前端的小姑娘吐槽,說能不能把接口中的日期格式化一下... ??????

{   "code": 1,   "isSucc": true,   "data": {     "id": 1,     "userType": "臨時人員",     "userName": "xxx",     "companyName": "xxx",     "telphone": "xxxx",     "isAuthorize": false,     "createTime": "2021-04-13T22:01:05.7705233+08:00",   } }

說實話,這個 createTime 我看者都不舒服??????,對了,項目是 .NET5 開發的,默認用的就是 System.Text.Json  做的格式化... 那如何修正為普世的 yyyy-MM-dd HH:mm:ss 呢?

做法和 D. English 這位老哥大致一樣,自定義個 DateTimeConverter 搞定。

public class DateTimeConverter : JsonConverter<DateTime>    {        public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)        {            return DateTime.Parse(reader.GetString());        }         public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options)        {            writer.WriteStringValue(value.ToString("yyyy-MM-dd HH:mm:ss"));        }    }

改完之后灌入到 IServiceCollection ,接口輸出就完美了~~~

{   "code": 1,   "isSucc": true,   "data": {     "id": 1,     "userType": "臨時人員",     "userName": "xxx",     "companyName": "xxx",     "telphone": "xxxx",     "createTime": "2021-04-13 22:08:28"   } }

到此,關于“怎么在 ASP.NET Core 中使用內置的 Json 格式化日期 ”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!

標題名稱:怎么在ASP.NETCore中使用內置的Json格式化日期
文章轉載:http://vcdvsql.cn/article14/pegsge.html

成都網站建設公司_創新互聯,為您提供網頁設計公司搜索引擎優化外貿網站建設軟件開發網站建設

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都app開發公司