How to send HTML form data to the back-end (Node JS)

How to send form data to the back-end (Node JS)?

1)- Let’s create a simple form with HTML and CSS

For how to create a form you can check my tutorial: How to build a form in HTML

Now we will create a simple form that will contain user’s full name, email, and message.

First create an index.html file.

And then to create a form using HTML the code will be:

form in HTML.PNG In the <textarea></textarea> tag cols and rows attributes are here to specify the width and the height of the area where the user will leave their message.

So the form will be like this:

form HTML.PNG Now let’s add a little bit of CSS.

form CSS.PNG We set the label width to 100px and the display property to inline-block so that we have the <input/> elements aligned vertically in a straight line.

Also we added the CSS property vertical-align to the label of <textarea></textarea> and <textarea></textarea> itself so that both of them become vertically aligned and at the same level.

Finally we added some margin, width, padding, background-color and color to the button.

So at the end the form looks like this:

form after CSS.PNG

2)- Send data to Node JS

Now that we have our form it is time to send user data to the back-end.

We can do that with fetch API. For that you can check my tutorial: Fetch API: Send data to the back-end

But as we have a form, we can also send data to the back-end through the form itself.

inside the <form></form> tag all we have to do is to add 2 attributes:

  • action: that will have a value of the URL we want to send the data to. You can choose any URL name. For this example we will choose a URL name of “contact”.
  • method: to specify the method used to send the data. The method to use to send the data is POST. So the HTML code will be:

action and method form.PNG Now let’s add an index.js file.

As we told the form to send data to” /contact” URL we have to set the routing for this URL in the back-end, otherwise the form will not find this URL.

We will need to require express package to set a server. To install express just go to Node JS terminal and type: npm install express.

express installation.PNG After installing express, we will require it and create a a variable called app that calls the express function.

require express.PNG Once we require express we should tell the server to listen to a certain port. So we will use the app.listen() syntax and we’ll choose port 3000.

port 3000.PNG Now let’s set the routing first for a GET request to display the HTML page using the server.

get HTMl file.PNG The “/” URL is there to tell the server whenever a user types a URL and ends it with “/” you must display the index.html page.

It does not have to be “/” exactly, you can choose anything you want like “/api” or “/home”…

res.sendFile() syntax is what tells the server to return the index.html page.

{root:__dirname} specifies the location of the index.html page.

Now if you go to Node js terminal and start the server by typing node index.js or if you have nodemon then type nodemon index.js, and then go to the search bar on the browser and type 127.0.0.1:3000/ you will have the HTML page displayed.

Now it is time to set the routing for the POST request URL.

post request.PNG The syntax is similar to GET request, except instead of GET we add POST.

So now, if we try to send the form data to the server, the server will not understand what is what.

We have many inputs in the form, so how will the server know that this input is the user name, and this one is the user email…?

Well, we can make the server understand simply by adding in each <input/> an attribute called name.

So let’s go back to the index.html and add a name attribute to all inputs.

name attribute.PNG Now once clicked on the submit button the form will send all the data in the body.

In the back-end to display the body of the form all we have to do is to add console.log(req.body).

req.body.PNG Now let’s add some data to the form:

adding some to the form.PNG And let’s click on the submit button.

undefine.PNG So once we clicked the button, in Node JS we have undefined as a message. Why?

Simply because when the form sends the data, it sends it encoded, in a URL encoded format to protect the user’s information.

For the server to understand the encoded URL we have to add express middleware app.use(express.urlencoded()).

urlencoded.PNG The {extended:true}) is here to specify whether the encoded URL data will be parsed using queryString Library or the qs Library. Node js will require it but it is not necessary to add, it will not change the code.

Now if you refresh the browser and enter the data once again and submit it, we’ll have:

data sent to the backend.PNG So now our data is sent to the backend. To access the entire code of this tutorial visit my blog: Entire code

0
Subscribe to my newsletter

Read articles from Salma ABOUMEROUANE directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Salma ABOUMEROUANE
Salma ABOUMEROUANE