我不明白为什么在Express应用程序中需要体解析器,因为我们可以不使用体解析器来获取数据。 它到底做什么,怎么做?


当前回答

理解请求正文

When receiving a POST or PUT request, the request body might be important to your application. Getting at the body data is a little more involved than accessing request headers. The request object that's passed in to a handler implements the ReadableStream interface. This stream can be listened to or piped elsewhere just like any other stream. We can grab the data right out of the stream by listening to the stream's 'data' and 'end' events. The chunk emitted in each 'data' event is a Buffer. If you know it's going to be string data, the best thing to do is collect the data in an array, then at the 'end', concatenate and stringify it. let body = []; request.on('data', (chunk) => { body.push(chunk); }).on('end', () => { body = Buffer.concat(body).toString(); // at this point, `body` has the entire request body stored in it as a string });

理解分析体

根据其文件

在处理程序之前解析中间件中的传入请求体, 可根据要求提供。身体属性。

正如您在第一个示例中看到的,我们必须手动解析传入的请求流以提取正文。当有多个不同类型的表单数据时,这就变得有点乏味了。因此,我们使用主体解析器包,它在底层完成所有这些任务。

它提供了四个模块来解析不同类型的数据

JSON正文解析器 原始体解析器 文本正文解析器 url编码的表单正文解析器

在获得原始内容体之后,解析器将使用上述策略之一(取决于您决定使用的中间件)来解析数据。您可以通过阅读它们的文档来了解更多有关它们的信息。

在设置需求之后。Body到已解析的Body, Body解析器将调用next()来调用堆栈中的下一个中间件,然后中间件就可以访问请求数据,而不必考虑如何解压缩和解析它。

其他回答

编辑:2019年4月2日 在express@4.16.0中,express中包含了体解析器中间件,因此您不再需要单独安装体解析器。更多细节请看这个

OLD:

要在Express.js版本4及更高版本中处理HTTP POST请求,需要安装名为body-parser的中间件模块。

body解析器提取传入请求流的整个body部分,并在req.body上公开它。

中间件之前是Express.js的一部分,但现在你必须单独安装它。

这个体解析器模块解析使用HTTP POST请求提交的JSON、缓冲区、字符串和URL编码的数据。使用NPM安装体解析器,如下所示。

npm install body-parser --save

理解请求正文

When receiving a POST or PUT request, the request body might be important to your application. Getting at the body data is a little more involved than accessing request headers. The request object that's passed in to a handler implements the ReadableStream interface. This stream can be listened to or piped elsewhere just like any other stream. We can grab the data right out of the stream by listening to the stream's 'data' and 'end' events. The chunk emitted in each 'data' event is a Buffer. If you know it's going to be string data, the best thing to do is collect the data in an array, then at the 'end', concatenate and stringify it. let body = []; request.on('data', (chunk) => { body.push(chunk); }).on('end', () => { body = Buffer.concat(body).toString(); // at this point, `body` has the entire request body stored in it as a string });

理解分析体

根据其文件

在处理程序之前解析中间件中的传入请求体, 可根据要求提供。身体属性。

正如您在第一个示例中看到的,我们必须手动解析传入的请求流以提取正文。当有多个不同类型的表单数据时,这就变得有点乏味了。因此,我们使用主体解析器包,它在底层完成所有这些任务。

它提供了四个模块来解析不同类型的数据

JSON正文解析器 原始体解析器 文本正文解析器 url编码的表单正文解析器

在获得原始内容体之后,解析器将使用上述策略之一(取决于您决定使用的中间件)来解析数据。您可以通过阅读它们的文档来了解更多有关它们的信息。

在设置需求之后。Body到已解析的Body, Body解析器将调用next()来调用堆栈中的下一个中间件,然后中间件就可以访问请求数据,而不必考虑如何解压缩和解析它。

为了访问post数据,我们必须使用body解析器。基本上body-parser就是允许express读取body然后解析成我们能理解的Json对象。

是的,我们可以在没有体解析器的情况下工作。当你不使用它时,你得到原始请求,你的主体和头不在request参数的根对象中。您必须单独操作所有字段。

或者您可以使用body解析器,因为express团队正在维护它。

body-parser能为您做什么:它简化了请求。 如何使用:下面是例子:

安装body-parser

这是如何在express中使用body-parser:

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

// support parsing of application/json type post data
app.use(bodyParser.json());

//support parsing of application/x-www-form-urlencoded post data
app.use(bodyParser.urlencoded({ extended: true }));

链接。

https://github.com/expressjs/body-parser。

然后你可以在根请求对象中得到body和header。例子

app.post("/posturl",function(req,res,next){
    console.log(req.body);
    res.send("response");
});

它解析HTTP请求体。这通常是必要的,当您需要知道的不仅仅是您所点击的URL时,特别是在POST或PUT PATCH HTTP请求的上下文中,您想要的信息包含在正文中。

基本上,它是一个中间件,用于解析JSON,纯文本,或只是返回一个原始的Buffer对象供您根据需要处理。