数组
你可以使用一个数字数组创建 Dayjs 对象,该数组反映传递给 new Date()
的参数
这需要 ArraySupport
插件才能工作
dayjs.extend(arraySupport)
dayjs([2010, 1, 14, 15, 25, 50, 125]); // February 14th, 3:25:50.125 PM
dayjs.utc([2010, 1, 14, 15, 25, 50, 125]);
dayjs([2010]); // January 1st
dayjs([2010, 6]); // July 1st
dayjs([2010, 6, 10]); // July 10th
dayjs([])
返回当前时间。
请注意,与 new Date(year, month, date)
一样,月份从 0 开始。