In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-17 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.