日期格式化成yyyy-mm-dd hh:mm:ss

// 定义日期格式化函数
    formatDate(date) {
      // 判断日期已经是否为 yyyy-mm-dd hh:mm:ss格式
      if (typeof date === 'string') {
        return
      }
      const year = date.getFullYear()
      const month = String(date.getMonth() + 1).padStart(2, '0')
      const day = String(date.getDate()).padStart(2, '0')
      const hours = String(date.getHours()).padStart(2, '0')
      const minutes = String(date.getMinutes()).padStart(2, '0')
      const seconds = String(date.getSeconds()).padStart(2, '0')

      return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
    },

你可能感兴趣的:(javascript,前端,开发语言)