Ошибка при подключении базы данных (mongo и nodejs) - PullRequest
3 голосов
/ 07 июня 2011

Я хочу создать класс для переноса соединения с базой данных. Это мой код (файл 'db.js'):

var mongodb = require('mongodb');

var Class = function() {
  this.db = null;
  var server = new mongodb.Server('127.0.0.1', 27017, {auto_reconnect: true});
  db = new mongodb.Db('myDB', server);
  db.open(function(error, db) {
    if (error) {
      console.log('Error ' + error);
    } else {
      console.log('Connected to db.');
      this.db = db;
    }
  });
};

module.exports = Class;

Class.prototype = {
  getCollection: function(coll_name) {
    this.db.collection(coll_name, function(error, c){ // <---  see error below
      return c;
    });
  }
}

exports.oid = mongodb.ObjectID;

Затем мой тестовый код (файл 'test.js'):

var DB = require('./db');
var myDB = new DB();
myDB.getCollection('myCollection'); // <--- error: Cannot call method 'collection' of null

1 Ответ

1 голос
/ 17 июня 2011

Вам не хватает "this" перед "db".Например:

this.db = new mongodb.Db('myDB', server);

И строка рядом с ним.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...