我在nodejs中使用omegle集成,并且有一个程序可以连接到omegle客户端,接收他的消息并将其作为转发器发送回去(以检查连接是否正常)。发生此错误时,将导致服务器关闭。
我如何在下面处理此错误?
我使用了try,catch,最后使用了nodejs提供的uncaughtException方法。
帮帮我...!!

ERROR-->
event.js:72
       throw er; // Unhandled 'error' event
Error:connecr ETIMEDOUT
      at errnoException (net.js:884:11)
    at Object.afterConnect [as oncomplete] (net.js:875:19)


我的密码->

     var Omegle, om, start;
        Omegle = require('../lib/omegle').Omegle;
        om = new Omegle();
        om.on('recaptchaRequired', function(key) {
  return console.log("Recaptcha Required: " + key);
});
om.on('gotMessage', function(msg) {
  var repeat;
  console.log("Got message: " + msg);
  repeat = function() {
    var sent;
    sent = "You said: " + msg;
    return om.send(sent, function(err) {
      return console.log(!err ? "Message sent: " + sent : "Error: " + err);
    });
  };
  om.startTyping(function() {
    return console.log("We started typing");
  });
  return setTimeout(repeat, 800);
});
om.on('strangerDisconnected', function() {
  console.log("Stranger disconnected");
  return start();
});
om.on('typing', function() {
  return console.log('Stranger started typing');
});
om.on('stoppedTyping', function() {
  return console.log('Stranger stopped typing');
});
start = function() {
  return om.start(function() {
    return console.log("connected with id " + om.id);
  });
};
start();

最佳答案

此错误是由于与Omegle造成的Internet连接超时所致,因此尝试在npm / Omegle网站和Github中阅读Callium Rogers文档也很容易处理,也可以使用Try ctach函数。

关于javascript - 如何检查与Node.js的omegle集成中的错误(未处理的异常(exception))?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17321466/

10-10 00:00