Date对象
日期格式化字符串模板
Optional
timezone: TimeZones时区索引值,请参考枚举TimeZones
.
格式化后的字符串
import { getTimeZone } from 'context';
import { format } from 'date';
let result = format(new Date(), 'yyyy-MM-dd HH:mm:ss', getTimeZone());
console.log(result);
// 2021-01-26 11:57:02
将Date类型格式为字符串.