SailsJS / ExpressJS req.body未定义

我已经尝试在config / http.js中取消注释bodyParser – 这仍然不能解决问题 – 现在它似乎只是没有git的路线。

下面是我的config / http.js文件。

configuration/ http.js

module.exports.http = { middleware: { order: [ // 'startRequestTimer', // 'cookieParser', // 'session', // 'myRequestLogger', 'bodyParser', // 'handleBodyParserError', 'compress', 'methodOverride', 'poweredBy', '$custom', 'router', // 'www', // 'favicon', '404', '500' ], // myRequestLogger: function (req, res, next) { // console.log("Requested :: ", req.method, req.url); // return next(); // } bodyParser: require('skipper') }, // cache: 31557600000 };