流星 - ddp重新连接后断开通信

时间:2014-10-05 13:35:41

标签: meteor publish-subscribe serverside-javascript ddp

我正在编写由两个模块组成的应用程序 - 客户端和服务器。服务器发布记录集和功能,客户端在记录集上订阅并调用远程功能。两个模块运行服务器端。一切都按预期工作,直到重新连接ddp会话(即服务器重启)。 重新连接后,远程函数调用停止返回任何值,订阅也被破坏(无事件)。

我能够找到两个同时使用的操作导致这种效果。 它的#self ;ready()"并在重新连接处理程序内调用任何远程函数。 如果我删除任何内容,那么一切都会恢复正常。

服务器:

if (Meteor.isServer) {
  Meteor.publish("pname", function () {
    var self = this;
    var id = Random.id();
    self.added("pname", id, {"init": "demo"});
    self.ready();
    Meteor.setInterval(function(){
      var id = Random.id();
      self.added("pname", id, {"init": "test"});
      self.removed("pname", id);
    }, 2000);
  });
  Meteor.methods({
    'demo': function (){
      console.log('demo function called');
      return 'demo';
    }
  });
}

客户端:

if (Meteor.isServer) {
  var remote = DDP.connect("http://example.com:3000");
  remote.onReconnect = function() {
    console.log('reconnect');
    console.log('calling remote function inside reconnect');
    var temp = remote.call('demo');
    console.log(temp);
  };
  var collection = new Meteor.Collection("pname", remote);
  collection.find({}).observe({
    "added": function(item) {
      console.log('added', item);
    }
  });
  remote.subscribe("pname");
  Meteor.setInterval(function(){
    console.log('calling remote function');
    var temp = remote.call('demo');
    console.log('Result: ' + temp); //after reconnect this line is not called
  }, 2000);
}

所以问题是: 是什么导致了这种行为?

1 个答案:

答案 0 :(得分:0)

您需要清理现有的发布方法,否则当它断开连接时尝试发布到不存在的订阅时会崩溃。

Meteor.publish("pname", function () {
    var self = this;
    var id = Random.id();
    self.added("pname", id, {"init": "demo"});
    self.ready();
    var intervalid = Meteor.setInterval(function(){
        var id = Random.id();
        self.added("pname", id, {"init": "test"});
        self.removed("pname", id);
    }, 2000);

    self.onStop(function() {
        Meteor.clearInterval(intervalid);
    });
});

您应该(可能)在服务器控制台中看到一些有关它的调试/有用信息