-
beginner with JS The goal is to select a CSV file on a computer to insert the data in a distant PostgreSQL table using HTML could look like this :
Once the CSV file has been selected, a click on
I don't know how to deal with the CSV file to get a correct EDIT Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
the problem was that |
Beta Was this translation helpful? Give feedback.
the problem was that
fetch
is async sodatafinal
was empty. I moved thefetch
inside theload
event. Now it is good.