0

我已经阅读了有关如何配置 express 以侦听 POST 请求的其他几个问题,但是当我尝试打印发送到服务器的简单 POST 查询时,我不断得到空 JSON 或未定义。

我有这个设置:

//routes
require('./routes/signup.js')(app);

// Configuration
app.configure(function(){
    app.use(connect.bodyParser());
    app.use(express.methodOverride());
    app.register(".html", hulk);
    app.set('views', __dirname + '/views');
    app.set('view options', {layout: false});
    app.set('view engine', 'hulk');
    app.use(express.static(__dirname + '/public'));
    app.use(app.router);
});

然后routes/signup.js看起来像这样:

var common_functions = require('../common_functions.js');
var views            = require('../views/view_functions.js');
var globals          = require('../globals.js');
var mongoose         = require('mongoose');

//declare classes
var User = mongoose.model('User');

module.exports = function(app){
    /**
     * SignUp GET
     */
    app.get('/signup', function(req, res){
        res.render('signup/signup.html');
    });

   /**
    * SignUp POST
    */
   app.post('/signup', function(req, res){
    console.log(JSON.stringify(req.body));
    console.log(req.body);
    res.send(JSON.stringify(req.body));
});

}

模板如下所示:

{{> header.html }}
{{> navigation.html }}
{{> body.html }}
<form action="/signup" method="post">
    <input name="email"/>
    <input type="submit"/>
</form>
{{> footer.html }}

任何部分都没有什么特别感兴趣的。

两者console.log打印出 undefined 而res.send()只是返回与以前相同的 html。我在这里做错了什么?

4

1 回答 1

1

Express 会在第一次调用路由器的任何动词函数时自动安装路由器中间件(如果尚未安装)。因此,通过在配置块上方加载路由,路由器中间件是堆栈中的第一个中间件(在 bodyParser 上方)。将加载路由文件移动到配置块下方将解决此问题。

从 Express.js 文档的配置部分:

Note the use of app.router, which can (optionally) be used to mount the application routes, otherwise the first call to app.get(), app.post(), etc will mount the routes.

http://expressjs.com/guide.html#configuration

于 2012-07-09T15:59:01.917 回答