1

我正在使用 Express 4.11.1 和 Body-parser 1.11.0。当我运行以下代码时,我得到以下输出

请建议如何获取表单值

输出

{}

服务器.js

var express = require('express');
var bodyParser = require('body-parser');

var app = express();
var router = express.Router();

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

app.get('/', function(req, res){
    res.sendFile(__dirname + '/index1.html');
});

app.post('/', function(req, res){    
    console.log(req.body);
    res.send(req.body);
    res.sendFile(__dirname + '/index1.html');
});

app.listen(3000,function(){
    console.log("Working on port 3000");
});

index1.html

<!doctype html>
<html>
  <body>
<form id="frmTest" name="frmTest" action="http://localhost:3000/" method="post">
  <input type="text" id="mytext" value="sadfsad fsd fsad" />
  <input type="submit" id="mysubmit" />
</form>
  </body>
</html>
4

2 回答 2

1

要在后端检索数据,您只需将名称添加到输入字段

<!doctype html>
<html>
  <body>
<form id="frmTest" name="frmTest" action="http://localhost:3000/" method="post">
  <input type="text" id="mytext" name="mytext" value="sadfsad fsd fsad" />
  <input type="submit" id="mysubmit" />
</form>
  </body>
</html>
于 2015-02-16T22:11:00.593 回答
0
app.post('/', function(req, res){    
    console.log(req.body.**NAMEATTRIBUTE**);
    res.send(req.body);
    res.sendFile(__dirname + '/index1.html');
});

给你的 html 'name' 属性。

于 2016-09-15T08:39:49.740 回答