js将当前时间转换成标准的年月日

直接上代码了:

 /**
   * 
   * @param e 转换成标准的年月日进行拆分
   * @returns 
   */
  changeCreationtime(e:any) {
    let year = e.getFullYear(),
    month = (e.getMonth() + 1) > 9 ? (e.getMonth() + 1) : '0' + (e.getMonth() + 1),
    day = e.getDate() > 9 ? e.getDate() : '0' + e.getDate();
    let obj = {
      year,
      month,
      day
    }
    return obj
}

 js将当前时间转换成标准的年月日_第1张图片

 

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