ここコードだ、htisエクスプレスフレームワーク使用のNode.jsである:オブジェクトのres.sendが機能していませんか?
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Expressxx' });
});
router.post('/', function(req, res, next) {
var body = '';
req.on('data', function(chunk) {
body += chunk;
});
req.on('end', function() {
console.log(body);
});
/* res.send('Got the Post'); */
res.set('Content-Type', 'text/plain');
res.send('this is the body' + body);
res.end();
});
module.exports = router;
iがにconsole.logを行う(本体)私は予想されるデータを見ていますが、私が見るクライアントでは、これは「これはボディです」です。 res.sendはボディobjを読み取ることができないようですか?
おかげで....あなたは上記の持っている