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

So zeigen Sie Daten von MongoDB im Frontend über Node.js an, ohne ein Framework zu verwenden

Um Mongo mit Knoten abzufragen, benötigen Sie definitiv eine Art Knotenmodul wie node-mongo-db-native (https://github.com/mongodb/node-mongodb-native ). Sie können es nicht nur mit dem Knotenkern machen ...

Hier ist ein Beispiel für die Abfrage einer mongodb mit node-mongo-db-native module docs...

var MongoClient = require('mongodb').MongoClient
    , format = require('util').format;

  MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err, db) {
    if(err) throw err;

    var collection = db.collection('test_insert');
    collection.insert({a:2}, function(err, docs) {

      collection.count(function(err, count) {
        console.log(format("count = %s", count));
      });

      // Locate all the entries using find
      collection.find().toArray(function(err, results) {
        console.dir(results);
        // Let's close the db
        db.close();
      });
    });
  })