当前位置:   article > 正文

js日期格式化,日期时间计算整理_js 时间戳只算年月日】

js 时间戳只算年月日】

js日期格式化,日期时间计算整理

功能列表:

  • 日期格式化
  • 计算日期差值
  • 计算日期+n天
  • 计算日期+n月
  • 计算日期+n年
  • 获得本季度的开始月份
  • 获得周一
  • 获得周日
  • 获得月初
  • 获得月末
  • 获得季度初
  • 获得季度末
  • 获得年初
  • 获得年末

工具类:


class DateUtils {
  /**
   * 格式化日期
   * @param {*} date 日期
   * @param {*} formatter 格式
   * @returns 格式化日期
   */
  static formatDate(date, formatter) {
    if (!date) {
      return ''
    }
    if (!(date instanceof Date)) {
      date = new Date(date)
    }
    const y = date.getFullYear()
    // 这里month得加1
    const m = `${date.getMonth() + 1}`.padStart(2, 0)
    const d = `${date.getDate()}`.padStart(2, 0)
    const hh = `${date.getHours()}`.padStart(2, 0)
    const mm = `${date.getMinutes()}`.padStart(2, 0)
    const ss = `${date.getSeconds()}`.padStart(2, 0)
    const SSS = `${date.getMilliseconds()}`.padStart(3, 0)
    if (formatter) {
      return formatter
        .replace('yyyy', y)
        .replace('MM', m)
        .replace('dd', d)
        .replace('hh', hh)
        .replace('mm', mm)
        .replace('ss', ss)
        .replace('SSS', SSS)
    }
    // 默认返回 yyy-mm-dd hh:mm:ss
    return `${y}-${m}-${d} ${hh}:${mm}:${ss}`
  }

  /**
   * 计算日期差值
   * @param {*} startDate 开始日期
   * @param {*} endDate 结束日期
   * @returns 返回计算结果
   */
  static calculateDiffDate(startDate, endDate) {
    if (!startDate || !endDate) return ''
    if (!(startDate instanceof Date)) {
      startDate = new Date(startDate)
    }
    if (!(endDate instanceof Date)) {
      endDate = new Date(endDate)
    }

    const startTime = startDate.getTime()
    const endTime = endDate.getTime()
    const total = (endTime - startTime) / 1000

    const day = parseInt(total / (24 * 60 * 60)) // 计算整数天数
    const afterDay = total - day * 24 * 60 * 60 // 取得值算出天数后剩余的转秒数
    const hour = parseInt(afterDay / (60 * 60)) // 计算整数小时数
    const totalHour = total / (60 * 60) // 换算小时数
    const afterHour = total - day * 24 * 60 * 60 - hour * 60 * 60 // 取得算出小时数后剩余的秒数
    const min = parseInt(afterHour / 60) // 计算整数分
    const totalMin = total / 60 // 换算分钟数据
    const afterMin = total - day * 24 * 60 * 60 - hour * 60 * 60 - min * 60 // 取得算出分后剩余的秒数

    const result = {
      day,
      afterDay,
      hour,
      totalHour,
      afterHour,
      min,
      totalMin,
      afterMin
    }
    return result
  }

  /**
   * 日期+天
   * @param {*} day
   * @param {*} n
   * @returns
   */
  static AddDays(day, n) {
    if (!day) {
      return ''
    }
    const t = new Date(day)

    t.setDate(t.getDate() + n)
    return t
  }

  /**
   * 日期+月。日对日,若目标月份不存在该日期,则置为最后一日
   * @param {*} day
   * @param {*} n
   * @returns
   */
  static AddMonths(day, n) {
    if (!day) {
      return ''
    }
    const t = new Date(day)
    const s = new Date(day)

    t.setMonth(t.getMonth() + n)
    if (t.getDate() !== s.getDate()) {
      t.setDate(0)
    }
    return t
  }

  /**
   * 日期+年。月对月日对日,若目标年月不存在该日期,则置为最后一日
   * @param {*} day
   * @param {*} n
   * @returns
   */
  static AddYears(day, n) {
    if (!day) {
      return ''
    }

    const t = new Date(day)
    const s = new Date(day)
    t.setFullYear(t.getFullYear() + n)
    if (t.getDate() !== s.getDate()) {
      t.setDate(0)
    }
    return t
  }

  /**
   * 获得本季度的开始月份
   * @param {*} dateMonth
   * @returns
   */
  static getQuarterStartMonth(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)
    const dateMonth = t.getMonth()

    if (dateMonth <= 2) {
      return 0
    }
    if (dateMonth <= 5) {
      return 3
    }
    if (dateMonth <= 8) {
      return 6
    }
    return 9
  }

  /**
   * 周一
   *
   * @param {*} date
   * @param {*} dateDayOfWeek
   * @returns
   */
  static getWeekStartDate(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)
    // 今天是本周的第几天。周一=0,周日=6
    const dateDayOfWeek = t.getDay() === 0 ? 6 : t.getDay() - 1

    return DateUtils.AddDays(date, -dateDayOfWeek)
  }

  /**
   * 周日。本周一+6天
   * @returns
   */
  static getWeekEndDate(date) {
    return DateUtils.AddDays(DateUtils.getWeekStartDate(date), 6)
  }

  /**
   * 月初
   * @param {*} dateYear
   * @param {*} dateMonth
   * @returns
   */
  static getMonthStartDate(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)

    const dateYear = t.getFullYear()
    const dateMonth = t.getMonth()

    return new Date(dateYear, dateMonth, 1)
  }

  /**
   * 月末。下月初-1天
   * @returns
   */
  static getMonthEndDate(date) {
    return DateUtils.AddDays(DateUtils.AddMonths(DateUtils.getMonthStartDate(date), 1), -1)
  }

  /**
   * 季度初
   * dateYear = date.getFullYear()
   * @param {*} dateYear
   * @returns
   */
  static getQuarterStartDate(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)

    const dateYear = t.getFullYear()

    return new Date(dateYear, DateUtils.getQuarterStartMonth(date), 1)
  }

  /**
   * 季度末。下季初-1天
   * @returns
   */
  static getQuarterEndDate(date) {
    return DateUtils.AddDays(DateUtils.AddMonths(DateUtils.getQuarterStartDate(date), 3), -1)
  }

  /**
   * 年初,1-1
   * @param {*} date
   * @returns
   */
  static getYearDateStart(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)
    const dateYear = t.getFullYear()
    return new Date(dateYear, 0, 1)
  }

  /**
   * 年末 12-31
   * @param {*} date
   * @returns
   */
  static getYearDateEnd(date) {
    if (!date) {
      return ''
    }
    const t = new Date(date)
    const dateYear = t.getFullYear()
    return new Date(dateYear, 11, 31)
  }
}

export default DateUtils

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/198424
推荐阅读
相关标签
  

闽ICP备14008679号