Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

.net Core how to solve the problem of returning time format with T in WebAPI

2025-04-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of ".net Core how to solve the problem of returning time format T in WebAPI". The editor shows you the operation process through an actual case. The method of operation is simple, fast and practical. I hope this article ".net Core how to solve the problem of returning time format T in WebAPI" can help you solve the problem.

The problem of returning time format with T is encountered in the project development, as shown in the figure:

Directly return this result to the front end, the front end is very difficult to deal with this time format problem, so the back end needs to process this format when the data is returned.

Create a new Order class:

Using System;namespace WebApiTest {public class Order {public int ID {get; set;} public DateTime OrderTime {get; set;}

Create a new formatting class DatetimeJsonConverter, inherit from JsonConverter, and override the methods in it:

Using System;using System.Text.Json;using System.Text.Json.Serialization Namespace WebApiTest {/ public class DatetimeJsonConverter: JsonConverter {public override DateTime Read (ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) {if (reader.TokenType = = JsonTokenType.String) {if (DateTime.TryParse (reader.GetString (), out DateTime date)) return date } return reader.GetDateTime ();} public override void Write (Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options) {writer.WriteStringValue (value.ToString ("yyyy-MM-dd HH:mm:ss"));}

Then modify the ConfigureServices method of the Startup class

Public void ConfigureServices (IServiceCollection services) {# region solves the problem of returning time with T services.AddControllers () .AddJsonOptions (configure = > {configure.JsonSerializerOptions.Converters.Add (new DatetimeJsonConverter ());}); # endregion}

Return the result

This is the end of the introduction to ".net Core how to solve the problem of returning time format T in WebAPI". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report