nodejs中req.body为空的问题
Posted ydam
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs中req.body为空的问题相关的知识,希望对你有一定的参考价值。
随着express升级,bodyParser从express中被分离了出来,因此,在使用express新版本的时候,需要npm install body-parser 来安装bodyParser。
-
在app.js中要引入bodyParser。
var bodyParser = require(‘body-parser‘);
-
其次,需要在app.js中use bodyParser。
app.use(bodyParser());
-
最后,需要给bodyParser提供参数。
‘Content-Type‘: ‘application/x-www-form-urlencoded‘
对于bodyParser的参数,根据需要解析的文件类型来进行设置,参数类型有很多种,可以查看具体文献。
以上是关于nodejs中req.body为空的问题的主要内容,如果未能解决你的问题,请参考以下文章