Unix 时间戳(秒)
根据 Unix 时间戳(10 位数字,自 Unix 纪元以来的秒数)创建 Day.js 对象。
¥Create a Day.js object from a Unix timestamp (10 digits, seconds since the Unix Epoch).
dayjs.unix(1318781876)
这是作为 dayjs(timestamp * 1000)
实现的,因此包括输入时间戳中的部分秒数。
¥This is implemented as dayjs(timestamp * 1000)
, so partial seconds in the input timestamp are included.
dayjs.unix(1318781876.721)