如何阅读Express.js中的帖子数据

时间:2015-02-12 10:43:43

标签: node.js post express body-parser

我正在尝试使用body-parser中间件来读取Express.js中的帖子数据。但得到以下错误

TypeError: Cannot read property 'text' of undefined
at /var/www/html/forkom/routes/index.js:49:28
at callbacks (/var/www/html/forkom/node_modules/express/lib/router/index.js:272:11)
at param (/var/www/html/forkom/node_modules/express/lib/router/index.js:246:11)

我的代码就像

  var express = require('express'), routes = require('./routes');
  var app = express.createServer();
  var bodyParser = require('body-parser');
  var multer = require('multer'); 
  require('./routes/index')(app); // use route
  app.set('views', __dirname + '/views');
  app.set('view engine', 'ejs');
  app.use(express.static(__dirname + '/public'));
  app.configure('production', function(){
  app.use(express.errorHandler());
  app.use(app.router);
  app.use(bodyParser.json()); // for parsing application/json
  app.use(bodyParser.urlencoded({ extended: true }));
  app.use(multer()); // for parsing multipart/form-data
});

我正在使用以下路线:

    app.post('/addComment', function (req, res) {
       var text   =  req.body.text; // error on this line
       res.json({"done":"yes",text:text});

     });

我用ajax调用试过了两个:

$("#postComment").click(function(){
            $.ajax({
                url:"/addComment",
                data:{text:$('.text-comment').val()},
                type:'POST',
                dataType:'json',
                success:function(data){
                    console.log(data);
                }
            });
        });

并使用邮递员App。

1 个答案:

答案 0 :(得分:0)

尝试更改.use中间件订单,例如:

  app.use(multer()); // for parsing multipart/form-data
  app.use(bodyParser.json()); // for parsing application/json
  app.use(bodyParser.urlencoded({ extended: true }));

如果不帮忙尝试没有闷闷不乐,如果在此之后你可以让你的json身体说出来。

app.use(multer({inMemory: true, onParseEnd: function(req, next){
    for(var file in req.files){
        if (file != 'archive'){
            req.body = JSON.parse(req.files[file].buffer);
        }
    }
    return next();
}}));

确定。试试这个,如果你有json身体说我。

好的,让我们试试这个:

app.use(bodyParser.json({limit:1024*1024, verify: function(req, res, buf){
    try {
        JSON.parse(buf);
    } catch(e) {
        res.send("bad json");
    }
}}));