各种日期格式化返回

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) + ‘日‘
}

 

以上是关于各种日期格式化返回的主要内容,如果未能解决你的问题,请参考以下文章

返回一个文化格式化日期的数组 C# MVC3

java中怎么验证日期格式,要各种日期格式都能验证,代码比较简单的。

小程序各种功能代码片段整理---持续更新

js时间处理,返回各种格式

Java各种日期格式的获取和设置指定日期

java字符串格式转换成日期格式