怎么获取yyyy-mm-dd HH:mm:ss这种格式
时间: 2023-07-22 21:46:21 浏览: 62
您可以使用JavaScript中的Date对象和一些内置函数来获取指定格式的日期时间。具体来说,您可以使用以下代码:
```
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1 < 10 ? '0' + (now.getMonth() + 1) : now.getMonth() + 1;
const day = now.getDate() < 10 ? '0' + now.getDate() : now.getDate()
const hours = now.getHours() < 10 ? '0' + now.getHours() : now.getHours();
const minutes = now.getMinutes() < 10 ? '0' + now.getMinutes() : now.getMinutes();
const seconds = now.getSeconds() < 10 ? '0' + now.getSeconds() : now.getSeconds();
const formattedDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
```
这将创建一个新的Date对象,然后使用内置函数获取年、月、日、小时、分钟和秒。最后,将这些值连接起来形成所需的格式。formattedDate变量将包含所需的日期时间格式。
阅读全文