Oké, zo heb ik het werkend gekregen:
async function userExistsInDB(email, password) {
let db = await MongoClient.connect('mongodb://127.0.0.1:27017/notificator');
try {
let collection = db.collection('users');
let userCount = (await collection.find(
{
email: email,
password: password
}).limit(1).count());
return userCount > 0;
} finally {
db.close();
}
}
En omdat de async
trefwoord in functieverklaring garanties dat de geretourneerde waarde een Promise
zal zijn , de enige manier om het echte resultaat uit deze functie te halen is:
let result = await this.userExistsInDB(email, password);
binnen een andere functie gedeclareerd async
.