对象函数 createServer() 没有方法 'bodyparser'

Object function createServer() has no method 'bodyparser'

我是 nodeJS 新手。我正在尝试将不同的中间件与连接中间件一起使用。

这是我的代码:

var connect = require('connect');
var bodyParser = require('body-parser');
var cookieParser = require('cookie-parser');
var app = connect()
.use(connect.bodyParser())
.use(connect.cookieParser('tobi is a cool ferret'))
.use(function(req, res){
console.log(req.cookies);
console.log(req.signedCookies);
res.end('hello\n');
}).listen(3000);

我已经通过 npm 安装了每个中间件。

我在 运行 这个文件时遇到这个错误。

 /home/dipesh/Desktop/temp/temp.js:5
 .use(connect.bodyParser())
         ^
  TypeError: Object function createServer() {
   function app(req, res, next){ app.handle(req, res, next); }
    merge(app, proto);
   merge(app, EventEmitter.prototype);
   app.route = '/';
    app.stack = [];
    return app;
  } has no method 'bodyParser'
  at Object.<anonymous> (/home/dipesh/Desktop/temp/temp.js:5:14)
  at Module._compile (module.js:456:26)
  at Object.Module._extensions..js (module.js:474:10)
  at Module.load (module.js:356:32)
  at Function.Module._load (module.js:312:12)
  at Function.Module.runMain (module.js:497:10)
  at startup (node.js:119:16)
  at node.js:929:3

有什么建议吗?

.use(bodyParser())

不是

.use(connect.bodyParser())

您曾需要 body-parser,但从未使用过。

你基本上是在做

var a = function(){};
var b = {};

b.a();

这是不正确的,因为 b 没有 'a' 属性。