Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

How to convert date coming from the db JavaScript

I need to convert this:

2020-10-19T16:30:00+00:00

To this:

2020-10-30T20:00:00.000Z

This data comes from the db as a string.

What is the right way to do that?

Thank you in advance!

question from:https://stackoverflow.com/questions/65829859/how-to-convert-date-coming-from-the-db-javascript

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

1 Answer

0 votes
by (71.8m points)

Try this:

const tmpDate = Date.parse(2020-10-19T16:30:00+00:00);

const date = tmpDate.toISOString(); //2020-10-19T16:30:00.000Z


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...