我正在使用express,无法从bodyParser获取表单数据。无论我做什么,它总是会变成一个空对象。这是我明确生成的app.js代码(我唯一添加的是底部的app.post路由):
var express = require('express'); var app = module.exports = express.createServer(); // Configuration app.configure(function(){ app.set('views', __dirname + '/views'); app.set('view engine', 'jade'); app.use(express.bodyParser()); app.use(express.methodOverride()); app.use(app.router); app.use(express.static(__dirname + '/public')); }); app.configure('development', function(){ app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); }); app.configure('production', function(){ app.use(express.errorHandler()); }); // Routes app.get('/', function(req, res){ res.sendfile('./public/index.html'); }); app.post('/', function(req, res){ console.log(req.body); res.sendfile('./public/index.html'); }); app.listen(3010);
这是我的HTML表单:
<!doctype html> <html> <body> <form id="myform" action="/" method="post" enctype="application/x-www-form-urlencoded"> <input type="text" id="mytext" /> <input type="submit" id="mysubmit" /> </form> </body> </html>
当我提交表单时,req.body是一个空对象{}
值得注意的是,即使我从表单标签中删除了enctype属性,也会发生这种情况
…我有什么地方想念/做错了吗?
我正在使用节点v0.4.11并表达v2.4.6
<form id="myform" action="/" method="post" enctype="application/x-www-form-urlencoded"> <input type="text" name="I_appear_in_req_body" id="mytext" /> <input type="submit" id="mysubmit" /> </form>
HTTP帖子的主体是带有name属性的所有表单控件的键/值哈希,值是控件的值。
name
您需要为所有输入提供名称。