第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Koa2 中 export 異步返回值

Koa2 中 export 異步返回值

隔江千里 2018-10-24 21:29:35
在 koa2 中抽象一個(gè) Mongodb 實(shí)例模塊。// mongoUtil.jsconst MongoClient = require('mongodb').MongoClient;async function getMongoDB() {  try {    const client = await new MongoClient('mongodb://localhost:27017/test').connect();     db = client.db();    return db;   } catch (err) {     client.close();   } }module.exports = getMongoDB;在其他中間件中使用此模塊const router = require('koa-router')();let mongo = require('../db/mongoUtil')(); router.get('/test', async (ctx, next) => {   ctx.body = {"Koa": "Hello World"};  const db = await mongo;  const col = db.collection('log');  const cursor = col.find({});  while(await cursor.hasNext()) {    const doc = await cursor.next();    console.dir(doc);   } });module.exports = router;我知道在 require 返回一個(gè)的是 promise 對(duì)象,所以我使用時(shí) const db = await mongo;。我現(xiàn)在想 mongoUtil.js 文件中直接返回 mongodb 實(shí)例對(duì)象,應(yīng)該要怎么做啊?
查看完整描述

1 回答

  • 1 回答
  • 0 關(guān)注
  • 1893 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)