MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Node.js MongoDB collection.find().toArray non restituisce nulla

Il modo migliore è usare Promises. Fallo così.

function getUsers () {
  return new Promise(function(resolve, reject) {
     database.collection("customers").find().toArray( function(err, docs) {
      if (err) {
        // Reject the Promise with an error
        return reject(err)
      }

      // Resolve (or fulfill) the promise with data
      return resolve(docs)
    })
  })
}