Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

126
Views
How to pass img file to a form

I have an image upload form that makes a post request to a node endpoint /upload. There, my app.js requests a file variable from the form and then (using Multer) pushes that file to a special uploads directory.

<form
        id="form"
        action="/upload"
        method="POST"
        enctype="multipart/form-data"
      >
    // when formBtn is changed (file selected) declare file var and submit
    formBtn.addEventListener("change", function () {
      // file that is requested in app.js
      const file = this.files[0];
      form.submit()
    });

I am trying to add drag and drop functionality. On Body I added <body ondrop="dragHandler(event);"> which calls function dragHandler ondrop and passes in event. Function dragHander() prevents default action (opening image in browser), verifies that what was dropped was a file, defines file, and submits the form.

function dragHandler(event) {
      var file;
      event.preventDefault();
      if (event.dataTransfer.items) {
        if (event.dataTransfer.items[0].kind == "file") {
          file = event.dataTransfer.items[0].getAsFile();
          form.submit;
        } else console.log('not a file');
      }

Because the dropped in file was not uploaded to the form, the post request (made by the form) does not contain the file variable and does not pass that information back to app.js. How would I be able to push my file variable (in dragHandler) into the form so it could be properly transferred to app.js?

app.js:

app.post("/upload", (req, res, next) => {
  upload(req, res, (err) => {
    if (err) {
      console.log("err: " + err);
    } else {
      // req.file is undefined when dropped in
      if (req.file == undefined) {
        console.log("file is not defined");
      } else {
        console.log(req.file);
      }
    }
  });
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!