40

我正在使用 nodejs + Express (v3),如下所示:

app.use(express.bodyParser());
app.route('/some/route', function(req, res) {
  var text = req.body; // I expect text to be a string but it is a JSON
});

我检查了请求标头并且缺少内容类型。即使“Content-Type”是“text/plain”,它似乎也被解析为 JSON。无论如何告诉中间件总是将正文解析为纯文本字符串而不是 json?以前的早期版本req可以req.rawBody解决这个问题,但现在不再存在了。在 Express 中强制将正文解析为纯文本/字符串的最简单方法是什么?

4

8 回答 8

37

在 express 4.x 中,您可以使用来自 bodyParser https://www.npmjs.org/package/body-parser的文本解析器

只需添加 app.js

app.use(bodyParser.text());

也在想要的路线上

router.all('/',function(req,res){
    console.log(req.body);

})
于 2014-11-27T18:14:51.513 回答
35

默认情况下bodyParser.text()只处理文本/纯文本。将类型选项更改为包括*/json*/*

app.use('/some/route', bodyParser.text({type: '*/*'}), function(req, res) {
  var text = req.body; // I expect text to be a string but it is a JSON
});

//or more generally:
app.use(bodyParser.text({type:"*/*"}));

你可以在这里找到文档

于 2015-05-07T11:19:32.700 回答
29

如果去掉bodyParser()中间件的使用,应该是文本。您可以查看bodyParser文档以获取更多信息:http ://www.senchalabs.org/connect/middleware-bodyParser.html

删除这一行:

app.use(express.bodyParser());

编辑:

看起来你是对的。同时,您可以创建自己的rawBody中间件。但是,您仍然需要禁用bodyParser(). 注意:req.body仍将是undefined.

这是一个演示:

应用程序.js

var express = require('express')
  , http = require('http')
  , path = require('path')
  , util = require('util');

var app = express();

function rawBody(req, res, next) {
  req.setEncoding('utf8');
  req.rawBody = '';
  req.on('data', function(chunk) {
    req.rawBody += chunk;
  });
  req.on('end', function(){
    next();
  });
}

app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.use(rawBody);
  //app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(app.router);
});

app.post('/test', function(req, res) {
  console.log(req.is('text/*'));
  console.log(req.is('json'));
  console.log('RB: ' + req.rawBody);
  console.log('B: ' + JSON.stringify(req.body));
  res.send('got it');
});

http.createServer(app).listen(app.get('port'), function(){
  console.log("Express server listening on port " + app.get('port'));
});

测试.js

var request = require('request');

request({
  method: 'POST',
  uri: 'http://localhost:3000/test',
  body: {'msg': 'secret'},
  json: true
}, function (error, response, body) {
  console.log('code: '+ response.statusCode);
  console.log(body);
})

希望这可以帮助。

于 2012-09-10T05:37:58.547 回答
15

Express 通过内容类型了解如何解码正文。它必须在中间件中有特定的解码器,这些解码器从4.x嵌入到库中:

app.use(express.text())
app.use(express.json())
于 2019-08-24T20:26:36.213 回答
3

您可以使用 plainTextParser ( https://www.npmjs.com/package/plaintextparser ) 中间件..

let plainTextParser = require('plainTextParser');
app.use(plainTextParser());

或者

app.post(YOUR_ROUTE, plainTextParser, function(req, res) {             
  let text = req.text;

  //DO SOMETHING....
}); 
于 2016-09-01T17:05:19.187 回答
2

实现这一目标的两个重要事项。

  1. 您需要添加文本中间件才能处理正文中的文本
  2. 您需要通过在请求中添加正确的标头“Content-type: text/plain”来设置内容类型

这是两者的示例代码。

const express = require('express');
const app = express();
const bodyParser = require('body-parser')
//This is the needed text parser middleware 
app.use(bodyParser.text()); 

app.post('/api/health/', (req, res) => {
    res.send(req.body);
});

const port = process.env.PORT || 3000;
app.listen(port, () => console.log(`Listening on ${port} ${new Date(Date.now())}`));

将此保存为 index.js。

安装依赖项。

npm i -S express 
npm i -S body-parser

运行。

node index.js

现在向它发送请求。

curl -s -XPOST -H "Content-type: text/plain" -d 'Any text or  json or whatever {"key":value}' 'localhost:3000/api/health'

您应该能够看到它发回您发布的任何内容。

于 2020-03-26T12:55:27.883 回答
1

我做的:

router.route('/')
.post(function(req,res){
    var chunk = '';

    req.on('data', function(data){
        chunk += data; // here you get your raw data.
    })        

    req.on('end', function(){

        console.log(chunk); //just show in console
    })
    res.send(null);

})
于 2017-07-21T16:41:44.763 回答
1

确保 express 和 bodyParser 的版本已经升级到合适的版本。表达 ~4.x 和 bodyParser ~1.18.x。那应该这样做。有了这些,以下应该可以工作

app.use(bodyParser.text());

于 2018-01-23T01:58:59.560 回答