nodejs receives post request parameters

WBOY
Release: 2023-05-25 15:34:38
Original
2802 people have browsed it

Node.js, as a server-side JavaScript running environment, is very common when processing HTTP requests. Among them, receiving the parameters of the post request is a very basic thing. Next, we will learn how to use Node.js to receive and parse post request parameters.

1. HTTP request in Node.js

In Node.js, we can create an HTTP server through the built-in http module. Here is a simple example of how to create a simple HTTP server:

const http = require('http');

const server = http.createServer((req, res) => {
  res.end('Hello World!');
});

server.listen(3000, () => {
  console.log('Server running at http://localhost:3000/');
});
Copy after login

This server simply responds with a Hello World! string. We can use the curl command to test:

curl http://localhost:3000/
Copy after login

We can see that after running the curl command, the server will reply with a Hello World! string.

2. Post request in HTTP request

In HTTP requests, GET request and POST request are the two most common and basic request methods. For HTTP GET requests, its parameters will be passed in the URL, while POST requests will send key-value pair data in the body of the request.

Of course, although the GET request can also carry parameters in the body, this method is not safe. POST requests can avoid this situation.

3. Node.js handles POST requests

When the server receives the POST request, we need to get the parameters from the request body. Here is the most common way to handle POST requests using Node.js:

const http = require('http');

const server = http.createServer((req, res) => {
  if(req.method === 'POST') {
    let postData = '';

    req.on('data', chunk => {
      postData += chunk.toString();
    });

    req.on('end', () => {
      console.log('postData:', postData);
      res.end('Hello World!');
    })
  } else {
    res.end('Hello World!');
  }
});

server.listen(3000, () => {
  console.log('Server running at http://localhost:3000/');
});
Copy after login

The main idea here is that when the client sends a POST request, we listen for on req data event and end event. In the data event, we continuously read the body of the request and store the data in a variable in the form of a string. After the end event is triggered, we can process the received parameters.

4. Parse the request parameters

After obtaining the parameters in the POST request, we need to parse the parameters. Generally speaking, parameters in POST requests are sent in key-value form, which is the style used by our common form data.

In Node.js, we can parse these parameters by using the querystring module. Here is an example:

const http = require('http');
const querystring = require('querystring');

const server = http.createServer((req, res) => {
  if(req.method === 'POST') {
    let postData = '';

    req.on('data', chunk => {
      postData += chunk.toString();
    });

    req.on('end', () => {
      console.log('postData:', postData);
      const body = querystring.parse(postData);
      console.log('body:', body);
      res.end('Hello World!');
    })
  } else {
    res.end('Hello World!');
  }
});

server.listen(3000, () => {
  console.log('Server running at http://localhost:3000/');
});
Copy after login

In the above example, we first used the built-in querystring module of Node.js. In the end event, we parse the received POST parameters using the querystring.parse() method, and then output it to the console for viewing.

5. Use Express to process POST requests

In addition to using Node.js’s built-in http module to process POST requests, we can also use the popular server-side framework Express. In Express, we can use the body-parser middleware to process parameters in POST requests. Here is an example using Express and body-parser:

const express = require('express');
const bodyParser = require('body-parser');

const app = express();

// 将JSON请求体解析中间件,放在路由之前
app.use(bodyParser.json());

// 处理URL编码请求体的中间件
app.use(bodyParser.urlencoded({extended: false}));

app.post('/', (req, res) => {
  console.log('body:', req.body);
  res.send('Hello World!');
});

app.listen(3000, () => {
  console.log('Server running at http://localhost:3000/');
});
Copy after login

In this example, we first use the Express framework and use body-parser in the middle software to handle parameters in POST requests. In the post route, we can directly obtain the parameters in the POST request through req.body and output them to the console and response.

Summary

To process POST requests in Node.js, we need to use the built-in http module of Node.js or the popular framework Express, and then implement parameter parsing and processing. For beginners, it is best to first understand how to use the http module in Node.js before considering using popular frameworks. At the same time, when processing POST requests, we also need to consider security issues to ensure that the transmitted parameters will not be obtained by third parties.

The above is the detailed content of nodejs receives post request parameters. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!