Ho provato il tutorial di W3schools su nodeJS con MongoDB.
Quando provo a implementare questo esempio in un ambiente nodeJS e invoco la funzione con una chiamata AJAX, ho ricevuto l'errore di seguito:
TypeError: db.collection is not a function
at c:\Users\user\Desktop\Web Project\WebService.JS:79:14
at args.push (c:\Users\user\node_modules\mongodb\lib\utils.js:431:72)
at c:\Users\user\node_modules\mongodb\lib\mongo_client.js:254:5
at connectCallback (c:\Users\user\node_modules\mongodb\lib\mongo_client.js:933:5)
at c:\Users\user\node_modules\mongodb\lib\mongo_client.js:794:11
at _combinedTickCallback (internal/process/next_tick.js:73:7)
at process._tickCallback (internal/process/next_tick.js:104:9)
Di seguito trovi il mio codice implementato:
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/mytestingdb";
MongoClient.connect(url, function(err, db) {
if (err) throw err;
db.collection("customers").findOne({}, function(err, result) {
if (err) throw err;
console.log(result.name);
db.close();
});
});
Si noti che l'errore si verifica ogni volta che si verifica l'esecuzione:
db.collection("customers").findOne({}, function(err, result) {}
Inoltre, notare (nel caso in cui sia importante) che ho installato il pacchetto MongoDB più recente per il nodo JS ( npm install mongodb ) e che la versione MongoDB è MongoDB Enterprise 3.4.4, con il driver MongoDB Node.js v3.0.0-rc0.
db.collection()...
un registro della console per vedere se arriva lì, nessun problema.