MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Warum funktioniert findRandom() Mungo für die node.js-Methode nicht?

Und wahrscheinlich könnte die Lösung hier sein - siehe die Kommentare auf der npm-Seite mongoose-random Beispiel .

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

Versuchen Sie es mit

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