Node.js:回调正在返回错误

时间:2011-04-05 18:07:16

标签: javascript javascript-events node.js

function die(err) {
  console.log('Uh oh: ' + err);
  process.exit(1);
}

var box, cmds, next = 0, cb = function(err) {
  if (err)
    die(err);
  else if (next < cmds.length)
    cmds[next++].apply(this, Array.prototype.slice.call(arguments).slice(1));
};

cmds = [
  function() { imap.connect(cb); },
  function() { imap.openBox('INBOX', false, cb); },
  function(result) { box = result; imap.search([ 'UNSEEN', ['SINCE', 'April 5, 2011'] ], cb); },
  function(results) {
    var msgCache = {},
        fetch = imap.fetch(results, { request: { headers: ['from', 'to', 'subject', 'date'] } });
    console.log('Now fetching headers!');
    fetch.on('message', function(msg) {
      msg.on('end', function() {
        msgCache[msg.id] = { headers: msg.headers };
      });
    });
    fetch.on('end', function() {
      console.log('Done fetching headers!');
      console.log('Now fetching bodies!');
      fetch = imap.fetch(results, { request: { headers: false, body: '1' } });
      fetch.on('message', function(msg) {
        msg.data = '';
        msg.on('data', function(chunk) {
          msg.data += chunk;
        });
        msg.on('end', function() {
          msgCache[msg.id].body = msg.data;
        });
      });
      fetch.on('end', function() {
        console.log('Done fetching bodies!');
        cb(msgCache);
      });
    });
  },
  function(msgs) {
    // Do something here with msgs, which contains the headers and
    // body (parts) of all the messages you fetched
    console.log("HERE");
    imap.logout(cb);    

  }
];
cb();

我正在使用该代码来获取电子邮件的标题和正文。但是,当我尝试传递结果(msgCache)时,它会出错。

我想念她的是什么?

感谢。

1 个答案:

答案 0 :(得分:1)

好像你在结束回调的fetch中调用了cb(msgCache),cb接受了第一个参数err。如果err是一个有效的非空对象,那么它将调用你的错误处理程序并死掉,所以即使使用有效的msgCache它也会调用错误处理程序。

为什么不调用console.log(msgCache)而不是cb(msgCache),看看你是否已经完成了。

或者我错过了发生错误的地方?