So far we have been requesting data from our server. But we can also send data to the server to be stored somewhere.
All requests use one of the HTTP methods. The main ones are: GET, POST, PUT, DELETE
.
app.get
deals with requests that use the GET
HTTP method.
When sending data to the server, we use the POST
http request method, instead of GET
. To understand the difference, follow the "POST vs GET" link in the keywords section below.
Let's try POST
ing some text to the server.
We're going to add a form to the index.html
page, so that you can write your blogposts from there.
Open up the index.html
file in your text editor. If you have a look, you should see this:
<div class="entry-container">
<!--PASTE YOUR CODE HERE!! -->
</div>
Replace the greyed-out comment with this code snippet:
<h3>Create a blog post</h3>
<form action="/create-post" method="POST">
<textarea name="blogpost" rows="10" cols="14">
</textarea>
<button type="submit">Send</button>
</form>
- This form has a text area and a Send button.
- The
action
attribute is the endpoint form data will be sent to. - The
name
attribute will be used later to reference the data.
When you hit Send, the form will send a POST
request to the server, using whatever is in the action
attribute as the endpoint. In our case it's /create-post
.
-
Data doesn't come through the server in one go; it flows to the server in a stream. Think of a stream as water flowing from a tap into a bucket. Your job is to collect this water in the server.
-
If we were writing a pure Node server, we would have to think about how to collect the stream of data properly. But luckily for us, Express handles all of that stuff under the hood.
-
All you need to do is define a route to deal with requests that come through on the
/create-post
endpoint.
Let's remind ourselves of a simple GET
route in Express:
app.get('/my-lovely-endpoint', function (req, res) {
res.send('Hello there!');
});
This time we want to define a route to deal with a POST
request. What do you think you would need to do differently? Experiment and see if you can define a route for the /create-post
endpoint!
For now, make your /create-post
handler simply do this: console.log('/create-post')
.
Now the contents of your blogpost is hidden in your req
object somewhere. Normally you would extract it using req.body
. Try to console.log req.body
now.
Getting undefined
? Not to worry, that's normal. When data has been POST
ed to the server, we need to do things slightly differently to access the data that's come through in the request.
We need another middleware function: body-parser
. body-parser
does what it says on the tin, it will parse the data in the request and make it available to you when you do req.body
.
This time though, body-parser
is not built-in, we need to explicitly install it.
In your terminal, install body-parser
npm install body-parser --save
We need to require body-parser
on our page so add this to the top of server.js
after your first require
:
var bodyParser = require('body-parser');
Now add this towards the top of your server, after your require
s and before your /create-post
endpoint:
app.use(bodyParser.urlencoded({ extended: true }));
(Don't worry too much about the { extended:true }
bit. If you're curious, you can read about it here)
Refresh your server and have another go at writing a blogpost.
You should now see an object in the console. The key should be blogpost
, just like the name attribute in the form. The value of blogpost
will be your message!
So you may have noticed that when you hit Send on the form, the browser sort of hangs. It's because it's trying to navigate to the /create-post
page. Of course, there is no such page.
There's an easy fix for this. In the response, you need to let the browser know that after it's finished with receiving the blogpost, you want it to reload the same page, and not try to go to fake page '/create-post'.
At the end of your /create-post
handler, add this line of code:
res.redirect('/');
This means: "please redirect to the /
endpoint." This little trick will refresh the page!
- POST vs GET
- [html forms]