MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Pourquoi findRandom() mongoose pour la méthode node.js ne fonctionne pas ?

Et la solution pourrait probablement être ici - voir les commentaires sur npm page mongoose-random exemple .

// if you have an existing collection, it must first by synced.
// this will add random data for the `path` key for each doc.

Essayez

productSchema.syncRandom(function (err, result) {
   console.log(result.updated);
});