我已经尝试在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
};