如何在Javascript中将UTC字符串格式化为MMMM dd, yyyy



我有:20121-11-02t00:00:00 . 000z。我需要把它显示为11/02,2021

有人能帮我一下吗?

你可以在普通JS中这样做

const options = { year: 'numeric', month: 'long', day: 'numeric' };
console.log(new Date('2021-11-02T00:00:00.000Z').toLocaleDateString("en-US", options));

您可能希望使用Date类提供的内容,下面是一个完整的示例。

const date = new Date('2021-11-02T00:00:00.000Z')
const month = date.toLocaleString('default', {
month: 'long'
})
const day = date.getDay()
const year = date.getFullYear()
console.log(`${month} ${day}, ${year}`)

相关内容

  • 没有找到相关文章

最新更新