各种日期格式化返回
Posted lst619247
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了各种日期格式化返回相关的知识,希望对你有一定的参考价值。
// 日期格式化返回 2019-04-01 export function getGangDate(dates) { if (dates) { const dateNew = new Date(dates) const y = dateNew.getFullYear() const m = dateNew.getMonth() + 1 const d = dateNew.getDate() return y + ‘-‘ + (m < 10 ? ‘0‘ + m : m) + ‘-‘ + (d < 10 ? ‘0‘ + d : d) } } // 日期格式化返回 2019-04-01 12:11:23 export function getGangDateMiao(dates) { if (dates) { const dateNew = new Date(dates) const y = dateNew.getFullYear() const m = dateNew.getMonth() + 1 const d = dateNew.getDate() const h = dateNew.getHours() const f = dateNew.getMinutes() const mm = dateNew.getSeconds() return y + ‘-‘ + (m < 10 ? ‘0‘ + m : m) + ‘-‘ + (d < 10 ? ‘0‘ + d : d) + ‘ ‘ + (h < 10 ? ‘0‘ + h : h) + ‘:‘ + (f < 10 ? ‘0‘ + f : f) + ‘:‘ + (mm < 10 ? ‘0‘ + mm : mm) } } // 日期格式化返回2019年04月01日 export function getWenDate(dates) { const dateNew = new Date(dates) const y = dateNew.getFullYear() const m = dateNew.getMonth() + 1 const d = dateNew.getDate() return y + ‘年‘ + (m < 10 ? ‘0‘ + m : m) + ‘月‘ + (d < 10 ? ‘0‘ + d : d) + ‘日‘ }
以上是关于各种日期格式化返回的主要内容,如果未能解决你的问题,请参考以下文章