它有时工作,有时不工作。 这是我的代码。
mongoose.connect('mongodb+srv://username:password@cluster0-bwawh.mongodb.net/test?retryWrites=true&w=majority', {useNewUrlParser: true});
// If the connection throws an error
mongoose.connection.on('error',function (err) {
console.log('Mongoose default connection error: ' + err);
});
输出为:
猫鼬默认连接错误:错误:querySrv ETIMEOUT _mongodb._tcp.cluster0-bwawh.mongodb.net
我已将云中的所有IP列入白名单。我该如何解决?
我正在使用"mongoose": "^5.5.12"
。