sql >> Databáze >  >> NoSQL >> MongoDB

Jak zobrazit data z MongoDB na frontend přes Node.js bez použití frameworku

K dotazu na mongo pomocí uzlu budete určitě potřebovat nějaký modul uzlu, jako je node-mongo-db-native (https://github.com/mongodb/node-mongodb-native ). Nemůžete to udělat s pouhým jádrem uzlu...

Zde je příklad dotazování mongodb pomocí 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();
      });
    });
  })


  1. Jak formátovat čísla v SQL

  2. Jak získat více objektů JSON pomocí nodejs a mongoose?

  3. Mongo nemůže nastartovat

  4. MongoDB insert()