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);
}
});
});
また、郵便配達アプリを使用しています。