js时间格式化yyyy-MM-dd HH:mm:ss
时间: 2023-07-19 16:26:15 浏览: 107
可以使用JavaScript中的Date对象和字符串的方法来格式化时间,代码如下:
```
function formatDate(date) {
let year = date.getFullYear();
let month = ('0' + (date.getMonth() + 1)).slice(-2);
let day = ('0' + date.getDate()).slice(-2);
let hours = ('0' + date.getHours()).slice(-2);
let minutes = ('0' + date.getMinutes()).slice(-2);
let seconds = ('0' + date.getSeconds()).slice(-2);
return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
}
// 使用示例
let now = new Date();
console.log(formatDate(now)); // 输出格式为:yyyy-MM-dd HH:mm:ss
```
这段代码可以将当前时间格式化为指定的字符串格式。如果需要将其他时间格式转换为该格式,只需要将`now`替换为相应的时间对象即可。
相关问题
yyyy-MM-dd HH:mm:ss.SSSSS转yyyy-MM-dd HH:mm:ss.SSS
String类型的日期格式转换是一种常见的操作,可以使用Java提供的日期时间类和格式化类来实现。在这个例子中,给出了两个方法来将不同格式的日期字符串互相转换。
方法transToNormalDate将格式为yyyy-MM-dd'T'HH:mm:ss.SSSXXX的日期字符串转换为格式为yyyy-MM-dd HH:mm:ss的日期字符串。首先,使用LocalDateTime类的parse方法将日期字符串解析为LocalDateTime对象。然后,使用DateTimeFormatter类的ofPattern方法指定新的日期格式,并使用LocalDateTime对象的format方法将其转换为字符串。
方法transToUTCDate将格式为yyyy-MM-dd HH:mm:ss的日期字符串转换为格式为yyyy-MM-dd'T'HH:mm:ss.SSSXXX的日期字符串。首先,使用SimpleDateFormat类将字符串解析为Date对象。然后,使用SimpleDateFormat类指定新的日期格式,并使用format方法将其转换为字符串。
javascript时间转换成标准"yyyy-MM-dd HH:mm:ss"格式的函数 代码最短 "yyyy-MM-dd HH:mm:ss"
以下是一个将JavaScript时间戳转换为标准日期格式(yyyy-MM-dd HH:mm:ss)的函数,代码最短:
```javascript
function formatDate(timestamp) {
return new Date(timestamp).toISOString().replace(/T/, ' ').replace(/\..+/, '');
}
```
调用该函数时,传入一个JavaScript时间戳,函数将返回一个标准的日期格式字符串,例如:
```javascript
console.log(formatDate(1616090400000)); // 输出 "2021-03-18 19:20:00"
```
这个函数的实现方式是,先使用 `toISOString()` 将时间戳转换为标准的 ISO 日期格式,例如 `2021-03-18T11:20:00.000Z`。然后,使用 `replace()` 方法去掉日期和时间之间的 `T` 字符,以及小数点后面的毫秒数。最终返回格式化后的字符串。
阅读全文