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
309 views
in Technique[技术] by (71.8m points)

How to read date from an excel file in JavaScript

How to read date from an excel file in JavaScript ?

When I fetched a date field from excel file, it comes like some integer/floating point number, how to display the original date present in the excel file.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

In JavaScript, when we fetch a date field from an excel file, it shows some integer/floating point number. To convert the number back to date, we can use the following:

  1. install excel-date-to-js package (npm i excel-date-to-js)
  2. Run this snippet:
   const { getJsDateFromExcel } = require("excel-date-to-js") 
   getJsDateFromExcel(dateFieldFromExcelFile)   e.g. getJsDateFromExcel(data[1][0])

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

...