如何使用阻塞代码将mongodb与nodejs连接?

时间:2022-08-31 03:01:41

Hi I want to write a blocked code to fetch data from mongodb using node.js. Please provide me a sample function which fetch data from mongodb in node.js using callback or using blocked code.

嗨,我想写一个被阻止的代码,使用node.js从mongodb获取数据。请给我一个示例函数,它使用回调或使用阻塞代码从node.js中的mongodb获取数据。

1 个解决方案

#1


Something like this:

像这样的东西:

this.db = new Db('node-mongo-blog', new Server(host, port, {auto_reconnect: true}, {}));
  this.db.open(function(err){
    if(err) {
      console.log(err);
    }
  });

Within the open function you can do your database related stuff.

在open函数中,您可以执行与数据库相关的操作。

#1


Something like this:

像这样的东西:

this.db = new Db('node-mongo-blog', new Server(host, port, {auto_reconnect: true}, {}));
  this.db.open(function(err){
    if(err) {
      console.log(err);
    }
  });

Within the open function you can do your database related stuff.

在open函数中,您可以执行与数据库相关的操作。