Content.ReadAsStringAsync() json 结果向 datetime 属性添加额外的一小时

发布于 2025-01-11 12:44:30 字数 935 浏览 2 评论 0原文

Content.ReadAsStringAsync() 结果向日期时间属性添加了额外的一小时。

这是我在邮递员上调用端点时得到的结果;

输入图片此处描述

ReadAsStringAsync json 结果向 datetime 属性返回额外的一小时。

字符串结果 = postResponse.Content.ReadAsStringAsync().Result;

输入图片这里的描述

为什么要在 datetime 属性中添加一个额外的小时?

输入图片此处描述

在此处输入图像描述

在此处输入图像描述

Content.ReadAsStringAsync() result adding an extra hour to datetime property.

Here is what i get when call endpoint on postman;

enter image description here

The ReadAsStringAsync json result return an extra hour to datetime property.

string result = postResponse.Content.ReadAsStringAsync().Result;

enter image description here

Why there is an extra hour added to datetime property ?

enter image description here

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2025-01-18 12:44:30

您应该使用 DateTimeOffset (瞬时时间或绝对时间)而不是 DateTime。
详细了解SO Anserwer about DateTime vs. DateTimeOffset

You should use DateTimeOffset (instantaneous time or absolute time) instead of DateTime.
Read more about in that SO Anserwer about DateTime vs. DateTimeOffset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文