TypeScript:
获取当前日期

如何操作:

在 TypeScript 中,你可以使用 Date 对象来获取当前的日期和时间。这里展示了如何做到:

const currentDate = new Date();
console.log(currentDate);

示例输出:

2023-04-12T07:20:50.52Z

这段代码片创建了一个新的Date对象,包含了当前的日期和时间,然后将其打印到控制台。你也可以使用toLocaleDateString()进行日期格式化,以便获取更易读的格式:

const currentDate = new Date();
console.log(currentDate.toLocaleDateString());

示例输出:

4/12/2023

使用 date-fns

对于更广泛的日期操作和格式化,date-fns库是一个受欢迎的选择。首先,通过 npm 安装它:

npm install date-fns

然后,你可以使用它来格式化当前日期:

import { format } from 'date-fns';

const currentDate = new Date();
console.log(format(currentDate, 'yyyy-MM-dd'));

示例输出:

2023-04-12

这个date-fns示例将当前日期格式化为"YYYY-MM-DD"格式的字符串。这个库为日期操作提供了大量的函数,使其成为任何需要处理日期的 TypeScript 程序员的多功能工具。