Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

javascript - How to format "2021-01-19T12:50:00Z" to: 2021-01-19 12:50:00

I am using angular and rxjs.

So I have this:

  x: console.log(res.map(date => date.dt))

And it returns this:

0: "2021-01-19T12:50:00Z"
1: "2021-01-19T12:51:00Z"
2: "2021-01-19T12:52:00Z"
3: "2021-01-19T12:53:00Z"
4: "2021-01-19T12:54:00Z"
5: "2021-01-19T12:55:00Z"
6: "2021-01-19T12:56:00Z"
7: "2021-01-19T12:57:00Z"
8: "2021-01-19T12:59:00Z"

But of course that is not readable.

SO I want to convert it to for example this: '2021-01-19 12:50:00',

So: yyyy-MM-dd HH-MM-SS

But so what I have to change?

Thank you


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could maybe do something like this:

    // this is taking a date string, if you are passing the date obj directly then no need to pass it to `new Date()`
    function cleanTheDate(dateStr) {
        return new Date(dateStr).toISOString().
            replace(/T/, ' ').
            replace(/..+/, '')
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...