Meteor客户端无法连接到服务器

时间:2013-10-16 14:19:27

标签: websocket meteor ddp

至少有一半的时间,当客户端加载我的Meteor应用时,它无法连接到服务器。

如果我在控制台中运行它:

Deps.autorun(function() {
  console.log(Meteor.status());
});

我可以看到客户端正在连接,断开连接,重复连接。

enter image description here

如果我在Chrome的开发工具中打开网络标签,我可以看到大约每隔一两秒,就会发出另一个WebSocket请求。

enter image description here

可能导致此问题的原因是什么?

1 个答案:

答案 0 :(得分:0)

您是否尝试过禁用WebSockets?尝试使用以下env变量运行您的meteor应用程序

export DISABLE_WEBSOCKETS=true

此建议由Arunoda on CodersClan发布。