课程
/前端开发
/Node.js
/node+mongodb 建站攻略(一期)
在后台录入的时候,为什么req.body为undefined,??
2017-01-11
源自:node+mongodb 建站攻略(一期) 3-2
正在回答
这样还是不行啊
是的 需要对表单数据进行解析
var bodyParser = require('body-parser'); app.use(bodyParser.json()); // for parsing application/json app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
前者解析json 后者解析表单等数据
你是不是没有用 body-parser 解析你的请求,你试一下: app.use(bodyParser.urlencoded({ extended: true }));
举报
带你完整实现一个从前端到后端的项目,初中级前端开发工程师必学课程