将格式化日期转换为HTML日期格式。

huangapple go评论74阅读模式
英文:

Convert formatted date to html date format

问题

我试图将这个日期格式2019-11-27T00:00:00 转换为HTML日期格式2019-11-27。moment.js中是否有现有的函数可以执行此操作?

英文:

I'm trying to convert this date format
2019-11-27T00:00:00 to the html date format of 2019-11-27. Is there an existing function on moment which does this?

答案1

得分: 3

你也可以使用以下代码在本地执行此操作:

const dateRaw = "2019-11-27T00:00:00"
const dateFormatted = dateRaw.split("T")[0] // -> 2019-11-27
英文:

You can also do this natively with the following code:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

const dateRaw = &quot;2019-11-27T00:00:00&quot;
const dateFormatted = dateRaw.split(&quot;T&quot;)[0] // -&gt; 2019-11-27

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年3月23日 09:55:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/75818686.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定