在JavaScript中,你可以通过以下步骤获取当前年月日时分秒的时间戳:获取当前日期和时间: 使用new Date()创建一个表示当前日期和时间的Date对象。 格式化日期和时间为年月日时分秒格式: 使用Date对象的各个方法(如getFullYear()、getMonth()、getDate()、getHours()、getMinutes()、getSeconds())获取各个时间组件,并...
import dayjs from '@/plugins/dayjs.js'(这里我创建的dayjs.js文件是放在vue项目下src目录下的plugins的) 在文件中使用dayjs: // 用dayjs将获取的当前时间转为年月日时分秒的格式 getDayjsTime () { let dayjsTime = dayjs(`${new Date()}`).format('YYYY-MM-DD HH:mm:ss') console.log(curr...