dayjs内部封装了多种操作时间日期的方法,和moment类似
使用ohpm install下载
1、ArkTS时间格式转换
下载安装
ohpm install dayjs
导入使用
import dayjs from "dayjs";
示例代码
参数类型:Date、string
dayjs(参数); // 解析
当前时间:dayjs().format(“YYYY-MM-DD HH:mm:ss”)
某个date: dayjs(参数).format(“YYYY-MM-DD HH:mm:ss”)
dayjs().set("month", 3).month(); // 获取
dayjs().add(1, "year"); // 处理
dayjs().isBefore(dayjs()); // 查询
开源站点部分API使用方法不明
可以查看Difference · Day.jsThis indicates the difference between two date-time in the specified unit.https://day.js.org/docs/en/display/difference