0

开始使用带有猫鼬 ODM 的 socket.io 并遇到了问题......假设我需要从数据库中获取数据(一些文章)

客户端代码:

socket.on('connect', function (data) {
  socket.emit('fetch_articles',function(data){       
    data.forEach(function(val,index,arr){
      $('#articlesList').append("<li>"+val.subject+"</li>")
    });
  });
});

和服务器代码:

var article_model = require('./models');

io.sockets.on('connection', function (socket) {
    var articles = {};
    // Here i fetch the data from db
    article_model.fetchArticles().sort('-_id').limit(5).exec(function(err,data){
      articles= data; // callback function
    });

    // and then sending them to the client
    socket.on('fetch_articles', function(fn){
      // Have to set Timeout to wait for the data in articles
      setTimeout(function(){fn(articles)},1000);
    });
});

所以我需要等待回调中应该进入的数据,同时立即执行 socket.on 回调。

那么这个问题有简单而正确的解决方案吗?

4

1 回答 1

1

看起来你想要这个:

var articles = null;
socket.on('fetch_articles', function(fn) {
  if (articles) {
    fn(articles);
  } else {
    article_model.fetchArticles().sort('-_id').limit(5).exec(function(err,data) {
      articles = data;
      fn(articles);
    });
  }
});
于 2013-04-29T15:52:59.400 回答