db/index.js数据库配置文件 一.在数据库连接失败的情况下,回调函数,再次发起连接,直到连接成功为止. handleDisconnect(){ this.connection.connect(function(err) { if(err) { // console.log('error when connecting to db:', err); setTimeout(_this.handleDisconnect, 2000); } }); this.connection.on('err…