赞
踩
- export let getDate = () => {
- // 补零
- let addZero = (t) => {
- return t < 10 ? '0' + t : t;
- }
- let time = new Date();
- let Y = time.getFullYear(), // 年
- M = time.getMonth() + 1, // 月
- D = time.getDate(), // 日
- h = time.getHours(), // 时
- m = time.getMinutes(), // 分
- s = time.getSeconds(); // 秒
- if (M > 12) {
- // 注: new Date()的年月日的拼接,在月份为12月时,会出现 获取月份+1 后,为13月的bug,需要特殊处理。用moment第三方插件获取时间也可避免此问题。
- M = M - 12;
- }
- return `${Y}-${addZero(M)}-${addZero(D)} ${addZero(h)}:${addZero(m)}:${addZero(s)}`;
- }
- // 调用
- import { getDate } from "./utils/getTime.js";
- getDate(); // 2024-03-31 09:34:31
- // 下载:
- npm i moment
- 或
- yarn add moment
- // 引入
- import moment from "moment";
- // 使用
- moment().format('YYYY-MM-DD HH:mm:ss'); // 获取当前时间:2024-03-31 09:38:02
- moment().startOf('day').format('YYYY-MM-DD HH:mm:ss'); // 获取今天0时0分0秒:2024-03-31 00:00:00
- moment().endOf('day').format('YYYY-MM-DD HH:mm:ss'); // 获取今天23时59分59秒:2024-03-31 23:59:59
- moment().daysInMonth(); // 获取当月的总天数:31
- moment().valueOf(); // 获取时间戳:1711849082142
- moment().add(-1, 'y').format('YYYY'); // 上一年:2023
- moment().add(0, 'y').format('YYYY'); // 今年:2024
- moment().add(1, 'y').format('YYYY'); // 下一年:2025
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。