我正在使用express 4.0,我知道主体解析器已经从express核心中取出,我正在使用推荐的替换,但我正在获得

bodyParser:使用单独的json/urlencoded中间件server.js:15:12 对扩展解析显式指定"extended: true" node_modules/ Body-parser /index.js:74:29

我在哪里可以找到这些所谓的中间件?或者我不应该得到这个错误?

var express     = require('express');
var server      = express();
var bodyParser  = require('body-parser');
var mongoose    = require('mongoose');
var passport    = require('./config/passport');
var routes      = require('./routes');

mongoose.connect('mongodb://localhost/myapp', function(err) {
    if(err) throw err;
});

server.set('view engine', 'jade');
server.set('views', __dirname + '/views');

server.use(bodyParser()); 
server.use(passport.initialize());

// Application Level Routes
routes(server, passport);

server.use(express.static(__dirname + '/public'));

server.listen(3000);

当前回答

不要使用体解析器

如果你使用的是Express 4.16+,你可以用Express这样做:

app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads

你现在可以使用npm uninstall body-parser卸载body-parser

要获得POST内容,可以使用req.body

app.post("/yourpath", (req, res)=>{

    var postData = req.body;

    //Or if this doesn't work

    var postData = JSON.parse(req.body);
});

我希望这对你们有帮助

其他回答

你对使用express-generator的意见是什么,它将生成框架项目开始,没有弃用的消息出现在你的日志中

执行此命令

npm install express-generator -g

现在,在Node项目文件夹中输入这个命令创建新的Express.js starter应用程序。

express node-express-app

该命令告诉express生成名为node-express-app的新Node.js应用程序。

然后进入新创建的项目目录,安装npm包并使用命令启动应用程序

cd node-express-app && npm install && npm start

bodyParser:使用单独的json/urlencoded中间件node_modules\express\lib\router\layer.js:95:5

表达已弃用的请求。host:使用req。主机名改为node_modules\body-parser\index.js:100:29

提供扩展选项node_modules\ Body-parser \index.js:105:29

不需要更新表达式或主体解析器

这些错误将被删除。遵循以下步骤:-

app.use (bodyParser。urlencoded({扩展:真}));//这将有助于编码。 app.use (bodyParser.json ());//这将支持json格式

它会运行。

编码快乐!

想要零警告?像这样使用它:

// Express v4.16.0 and higher
// --------------------------
const express = require('express');

app.use(express.json());
app.use(express.urlencoded({
  extended: true
}));

// For Express version less than 4.16.0
// ------------------------------------
const bodyParser = require('body-parser');

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
  extended: true
}));

解释:扩展选项的默认值已弃用,这意味着您需要显式地传递true或false值。

注意,对于Express 4.16.0及更高版本:重新添加了正文解析器,以提供开箱即用的请求正文解析支持。

在旧版本的express中,我们必须使用:

app.use(express.bodyparser()); 

因为体解析器是节点和 表达。现在我们必须像这样使用它:

app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());

这意味着使用bodyParser()构造函数已被弃用,截至2014-06-19。

app.use(bodyParser()); //Now deprecated

现在需要分别调用这些方法

app.use(bodyParser.urlencoded());

app.use(bodyParser.json());

等等。

如果你仍然得到一个urlencoded警告,你需要使用

app.use(bodyParser.urlencoded({
  extended: true
}));

扩展配置对象键现在需要显式传递,因为它现在没有默认值。

如果您正在使用Express >= 4.16.0,则在Express .json()和Express .urlencoded()方法下重新添加了body解析器。