SailsJS / ExpressJS req.body undefined

时间:2015-05-27 19:44:00

标签: node.js sails.js

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

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

配置/ 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
};

0 个答案:

没有答案