co.wrap yield Promise throw TypeError: undefined is not a function

co.wrap yield Promise throw TypeError: undefined is not a function

我在 co.wrap 中提出了一个 Promise,但它抛出 TypeError: undefined is not a function(错误行是 yield pm2.connect();)

app.js:

var app = koa();
app.init = co.wrap(function *(overwriteDB) {

  yield pm2.connect();

    koaConfig(app);

    app.server = app.listen(config.app.port);
      if (config.app.env !== 'test') {
        console.log('PM2 monitor listening on port ' + config.app.port);
      }
    });
  }

  if (!module.parent) {
    app.init().catch(function (err) {
      console.error(err.stack);
      process.exit(1);
    });
  }

在pm2.js中,我包装了一个函数到return一个Promise,代码如下:

var _ = PM2.prototype;

exports = module.exports = PM2;

function PM2() {
  debug("PM2");
  if (!(this instanceof PM2)) return new PM2;
  this.env = process.env.NODE_ENV || 'development';
};

_.connect = function() {
  debug('connect');
  return new Promise(function(resolve, reject) {
    pm2.connect(function(err) {
    if (err) reject(err);
    resolve();
  });
});

那我试试

co(function *() {
  yield pm2.connect();
  var res = yield pm2.list();
  console.log(res);
});

在 app.js 中,它工作正常。

我忘记了 ()

require('./lib/pm2')();