欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于Day.js更优雅的处理JavaScript中的日期

程序员文章站 2022-07-04 19:05:00
目录moment.jsday.jsday.js 例子1. relativetime2. weekofyear3. issameorafter4. minmax5. isbetween今天我推荐给大家一...

今天我推荐给大家一个库 day.js,它能够帮助我们处理javascript中的日期,因为javascript中的日期实在是太难用了。在做业务开发时完全无法使用,需要自己去封装各种函数。

为什么使用day.js

首先,使用day.js能够帮助我们更简单的处理javascript中的日期和时间。
在javascript中处理时间的库你可能听说很多,比如moment,但都2021年了,其实是非常不推荐使用moment.js的,因为作为日期处理工具,它过于的笨重,day.js是更现代并且更轻量化,更加容易扩展的一个库。

moment.js

基于Day.js更优雅的处理JavaScript中的日期

day.js

基于Day.js更优雅的处理JavaScript中的日期

它非常轻量化,因为它可以利用treeshaking,并且通过插件的方式来进行扩展,我们可以根据自己的需求去引入插件,所以我们最后只会引入我们需要的东西。

没有day.js我们怎么办

在原生的javascript中,我们要获取当前的日期要这样

const today = new date();
const dd = string(today.getdate()).padstart(2, '0'); // 日
const mm = string(today.getmonth() + 1).padstart(2, '0'); // 月
const yyyy = today.getfullyear(); // 年
const curdate = `${yyyy}-${mm}-${dd}`

console.log(curdate)
// 输出: 2021-09-17

在day.js中我们只需这样,当然不止这样,还支持很多功能。
import dayjs from "dayjs";

const curdate = dayjs().format('yyyy-mm-dd');

console.log(curdate)
// 输出: 2021-09-17

day.js 例子

现在我们来看一些实用、有趣的例子,与原生api相比,它更加简单,而且可读性更强。

1. 获取两个日期相差的天数


import dayjs from "dayjs";

// 第二个参数指定为'day'代表以日为颗粒度
dayjs(new date(2021, 10, 1)).diff(new date(2021, 9, 17), "day"); 
// 输出: 15

2. 检查日期是否合法


import dayjs from "dayjs";

dayjs("20").isvalid(); 
// 输出:  false
dayjs("2021-09-17").isvalid(); 
// 输出:  true

3. 获取输入日期月份的天数


import dayjs from "dayjs";

dayjs("2021-09-13").daysinmonth() 
// 输出: 30

4. 添加日、月、年、时、分、秒


import dayjs from "dayjs";

dayjs("2021-09-17 08:10:00").add(20, "minute").format('yyyy-mm-dd hh:mm:ss') 
// 输出: 2021-09-17 08:30:00

5. 减去日、月、年、时、分、秒


import dayjs from "dayjs";

dayjs("2021-09-17 08:10:00").subtract(20, "minute").format('yyyy-mm-dd hh:mm:ss')
// 输出: 2021-09-17 07:50:00

使用插件来扩展功能

1. relativetime


获取指定时间到现在的时间差。

import dayjs from "dayjs";
import relativetime from "dayjs/plugin/relativetime";

dayjs.extend(relativetime);

dayjs("2021-09-16 13:28:55").fromnow();
// 输出: 9 hours ago

下面是所有的输出表

range key sample output
0 to 44 秒 s a few seconds ago
45 to 89 秒 m a minute ago
90 秒 to 44 分钟 mm 2 minutes ago ... 44 minutes ago
45 to 89 分钟 h an hour ago
90 分钟 to 21 小时 hh 2 hours ago ... 21 hours ago
22 to 35 小时 d a day ago
36 小时 to 25 天 dd 2 days ago ... 25 days ago
26 to 45 天 m a month ago
46 天 to 10 月 mm 2 months ago ... 10 months ago
11 月 to 17月 y a year ago
18 月+ yy 2 years ago ... 20 years ago

2. weekofyear


获取指定日期是当年的第几周

import dayjs from "dayjs";
import weekofyear from "dayjs/plugin/weekofyear";

dayjs.extend(weekofyear);

dayjs("2021-09-13 14:00:00").week(); 
// 输出: 38

3. issameorafter


检查一个日期是否等于或者大于一个日期

import dayjs from "dayjs";
import issameorafter from "dayjs/plugin/issameorafter";

dayjs.extend(issameorafter);

dayjs("2021-09-17").issameorafter("2021-09-16"); 
// 输出: true

4. minmax


获取数组中最大的日期,或者最小的日期

import dayjs from "dayjs";
import minmax from "dayjs/plugin/minmax";

dayjs.extend(minmax)

const maxdate = dayjs.max([
    dayjs("2021-09-13"), 
    dayjs("2021-09-16"), 
    dayjs("2021-09-20")
])

const mindate = dayjs.min([
    dayjs("2021-09-13"), 
    dayjs("2021-09-16"), 
    dayjs("2021-09-20")
])

maxdate.format('yyyy-mm-dd hh:mm:ss') 
// 输出: 2021-09-20 00:00:00
mindate.format('yyyy-mm-dd hh:mm:ss') 
// 输出: 2021-09-13 00:00:00

5. isbetween


检查指定日期是否在指定的日期范围内

import dayjs from "dayjs";
import isbetween from "dayjs/plugin/isbetween";

dayjs.extend(isbetween);

// 使用日为颗粒度进行比较
dayjs("2010-10-21").isbetween(dayjs("2010-10-20"), dayjs("2010-10-25"), "day");
// 输出: true

// 使用年为颗粒度进行比较
dayjs("2010-10-21").isbetween(dayjs("2010-10-20"), dayjs("2010-10-25"), "year");
// 输出: false

 到此这篇关于基于day.js更优雅的处理javascript中的日期的文章就介绍到这了,更多相关day.js处理日期内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Day.js 日期