英文:
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 = "2019-11-27T00:00:00"
const dateFormatted = dateRaw.split("T")[0] // -> 2019-11-27
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论