Node.js异步/等待模块导出

时间:2018-07-02 19:18:06

标签: javascript node.js module async-await

我对模块创建有点陌生,想知道module.exports并等待异步函数(例如mongo connect函数)完成并导出结果。可以在模块中使用async / await正确定义变量,但是当通过要求模块尝试记录变量时,它们显示为未定义。如果有人能指出我正确的方向,那就太好了。这是到目前为止我得到的代码:

// module.js

const MongoClient = require('mongodb').MongoClient
const mongo_host = '127.0.0.1'
const mongo_db = 'test'
const mongo_port = '27017';

(async module => {

  var client, db
  var url = `mongodb://${mongo_host}:${mongo_port}/${mongo_db}`

  try {
    // Use connect method to connect to the Server
    client = await MongoClient.connect(url, {
      useNewUrlParser: true
    })

    db = client.db(mongo_db)
  } catch (err) {
    console.error(err)
  } finally {
    // Exporting mongo just to test things
    console.log(client) // Just to test things I tried logging the client here and it works. It doesn't show 'undefined' like test.js does when trying to console.log it from there
    module.exports = {
      client,
      db
    }
  }
})(module)

这是需要模块的js

// test.js

const {client} = require('./module')

console.log(client) // Logs 'undefined'

我对js相当熟悉,并且仍在积极学习和研究诸如async / await之类的功能,但是,是的。。。我真的无法弄清楚这一点。

2 个答案:

答案 0 :(得分:5)

您必须同步导出,因此不可能直接导出clientdb。但是,您可以导出解析为clientdb的Promise:

module.exports = (async function() {
 const client = await MongoClient.connect(url, {
   useNewUrlParser: true
 });

  const db = client.db(mongo_db);
  return { client, db };
})();

因此,您可以将其导入为:

const {client, db} = await require("yourmodule");

(本身必须在异步函数中)

PS:console.error(err)不是正确的错误处理程序,如果您无法处理错误,只会崩溃

答案 1 :(得分:0)

@Jonas Wilms上面提供的解决方案正在工作,但是每次我们想重用连接时,都需要在异步函数中调用require。另一种方法是使用回调函数返回mongoDB客户端对象。

mongo.js:

const MongoClient = require('mongodb').MongoClient;

const uri = "mongodb+srv://<user>:<pwd>@<host and port>?retryWrites=true";

const mongoClient = async function(cb) {
    const client = await MongoClient.connect(uri, {
             useNewUrlParser: true
         });
         cb(client);
};

module.exports = {mongoClient}

然后我们可以在其他文件(表达路由或任何其他js文件)中使用mongoClient方法。

app.js:

var client;
const mongo = require('path to mongo.js');
mongo.mongoClient((connection) => {
  client = connection;
});
//declare express app and listen....

//simple post reuest to store a student..
app.post('/', async (req, res, next) => {
  const newStudent = {
    name: req.body.name,
    description: req.body.description,
    studentId: req.body.studetId,
    image: req.body.image
  };
  try
  {

    await client.db('university').collection('students').insertOne({newStudent});
  }
  catch(err)
  {
    console.log(err);
    return res.status(500).json({ error: err});
  }

  return res.status(201).json({ message: 'Student added'});
};