做后台管理项目,经常要上传Excel表格,我们搞前端的,现在越来越需要做各种数据处理了,回想当年,纯给后端做粉刷匠,真是幸福啊。
上传一段转Excel时间的方法,以后自己也好复制粘贴,免得自己写浪费时间。
export function formatExcelDate(numb, format = '/') {
const time = new Date((numb - 25567) * 24 * 3600000 - 5 * 60 * 1000 - 43 * 1000 - 24 * 3600000 - 8 * 3600000)
time.setYear(time.getFullYear())
const year = time.getFullYear() + ''
const month = time.getMonth() + 1 + ''
const date = time.getDate() + ''
if (format && format.length === 1) {
return year + format + month + format + date
}
return year + (month < 10 ? '0' + month : month) + (date < 10 ? '0' + date : date)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)