只需处理相关事件的错误:
// If the connection throws an error
connection.on('error',function (err) {
// Do something here
});
// When the connection is disconnected
connection.on('disconnected', function () {
// Do something else here
});
当然,在运行查询时,非常建议err
在继续之前检查回调函数的参数。