Content.ReadAsStringAsync() json 结果向 datetime 属性添加额外的一小时
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;
The ReadAsStringAsync json result return an extra hour to datetime property.
string result = postResponse.Content.ReadAsStringAsync().Result;
Why there is an extra hour added to datetime property ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
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.