更改打字稿上的日期格式以将数据作为 DateTimeOffset 发送到后端 (C#) 端

发布于 2025-01-20 15:47:19 字数 370 浏览 0 评论 0原文

我想将日期信息发送到后端。但是我找不到可以发送的真实日期格式。

我有日期为字符串。我想将此字符串转换为另一个日期格式以发送后端,而后端将其作为DateTimeOffset。

我的字符串:

_finishDateTime: "2021-11-12T00:00:00"

后端侧的预期格式:

”在此处输入图像描述”

I want to send date info to backend side. But I couldn't find the true date format to send it.

I have date as a string. I want to convert this string to another date format to send it backend and backend will take it as a DateTimeOffset.

My string :

_finishDateTime: "2021-11-12T00:00:00"

Expected format from backend side:

enter image description here

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

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

发布评论

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

评论(1

一绘本一梦想 2025-01-27 15:47:19

DateTimeOffset 的字符串表示形式类似于 yyyy-MM-ddTHH:mm:ss.fff+xx:xx,其中偏移部分 (+xx:xx) 是与 UTC 时间的差异(请注意, + 可以是减号“-”)

示例:2021-12-23T13:50:45.200+02:00

另外,如果您传递的是 UTC 时间,则可以发送yyyy-MM-ddTHH:mm:ss.fffZ(Z = Zulu aka UTC)

The string Representation of a DateTimeOffset is like yyyy-MM-ddTHH:mm:ss.fff+xx:xx with the offset part (+xx:xx) being the diference with UTC time (note that the + could be a minus '-')

Example: 2021-12-23T13:50:45.200+02:00

Also if you are passing a UTC time you can send yyyy-MM-ddTHH:mm:ss.fffZ (Z = Zulu aka UTC)

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