写出2023-02-10T08:06:35.000+00:00这种格式的时间转换成2023-02-10 08:06:35这种格式的代码,用javascript语言
时间: 2024-03-12 07:47:50 浏览: 170
以下是 JavaScript 代码实现:
```javascript
// 定义原始时间字符串
const raw_time = '2023-02-10T08:06:35.000+00:00';
// 将原始时间字符串转换为 Date 对象
const dt_obj = new Date(raw_time);
// 定义转换函数,将 Date 对象转换为目标格式的字符串
function formatDate(date) {
const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + date.getDate()).slice(-2);
const hour = ('0' + date.getHours()).slice(-2);
const minute = ('0' + date.getMinutes()).slice(-2);
const second = ('0' + date.getSeconds()).slice(-2);
return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
}
// 将 Date 对象转换为目标格式的字符串
const target_time = formatDate(dt_obj);
// 输出目标时间字符串
console.log(target_time);
```
输出结果为:
```
2023-02-10 08:06:35
```
阅读全文