💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
> 日期的常用写法特此介绍 [TOC] ## 初始化 ~~~ new Date(); // 默认当前时间 new Date(value); // 时间戳参数。毫秒,可使用new Date().getTime()获取时间戳 new Date(dateString); // 时间字符串 ~~~ ## 格式化 ~~~ var date = new Date(); console.log(formatDate(date)) // 日期格式化封装 function formatDate(date){ return date.getFullYear()+'-'+(date.getMonth()+1).toString()+"-"+date.getDate()+' '+date.getHours()+":"+date.getMinutes()+":"+date.getSeconds() } ~~~