sailsjs使用没有ORM的mongodb

时间:2017-05-01 15:41:21

标签: node.js mongodb promise sails.js q

我想在没有任何ORM的情况下使用mongodb。以下是我连接mongodb的服务 服务:

//DbService.js

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

    module.exports = {
      db:function(req, res){
        var connect=MongoClient.connect("mongodb:***********").then(function (err, database) {
          if(err) console.log(err);
          else{
            database=database.db('*****');
            return connect;
          }  

        });  
      }
    }

连接后我在控制器中调用它,但是得到TypeError:无法读取未定义的属性'then'。

控制器:

//HomeControlelr.js
    module.exports = {
            index:function(req, res){
                DbService.db().then(function(err,db) {
                    console.log(db);
                })
            }
    };

2 个答案:

答案 0 :(得分:0)

正如您在docs MongoClient.connect()中看到的那样,不会返回Promise对象。而不是使用回调函数

module.exports = {
  db:function(){
    var connect = MongoClient.connect("mongodb:***********", function (err, database) {
      //...
      }  
    });  
  }
}

顺便说一句。您在控制器中调用DbService.db函数也会失败,因为您的服务函数也不会返回Promise

在继续之前,请阅读有关Promises和回调函数的内容

答案 1 :(得分:0)

第一个npm i mongodb是因为您需要用new ObjectID(idStr)包装所有ID。

然后您可以执行以下操作:

const collection = Pet.getDatastore().manager.collection(Pet.tableName);
const res = await collection.find({ name: { $regex: /blue/ } });
const dataWithObjectIds = await res.toArray();
const dataWithIds = JSON.parse(JSON.stringify(rawDataArr).replace(/"_id"/g, '"id"'));

我创建了一个辅助函数来为我们完成所有这些工作:

/**
 * Use by chaining as if you were acting on a collection. So can use .find .aggregate etc.
 * Returns json searializable data.
 *
 * @param {class} model A model
 * @param {number} cnt - Number of chains on this, so I know when it reached the end
 */
function nativeMongoQuery(model, cnt) {

  const collection = model.getDatastore().manager.collection(model.tableName);

  let callCnt = 0;

  let req;

  const proxy = new Proxy({}, {
    get: (_, method) => (...args) => {

      if (!req) req = collection[method](...args);
      else req = req[method](...args);

      callCnt++;

      if (callCnt === cnt) {
        return (async function() {
          const rawDataArr = await req.toArray();
          return JSON.parse(JSON.stringify(rawDataArr).replace(/"_id"/g, '"id"'));
        })();
      } else {
        return proxy;
      }
    }
  });

  return proxy;

}

module.exports = nativeMongoQuery;

我不喜欢JSON解析和字符串化以及全局替换。但是,如果我不进行字符串化,那么mongo _id都是ObjectId

像这样使用它:

const { ObjectId } = require('mongodb');

function makeObjectId(id) {
   return new ObjectId(id);
}

const ownerIds = ['5349b4ddd2781d08c09890f4', '5349b4ddd2781d08c09890f5']
const ownerObjectIds = ownerIds.map(makeObjectId);
await nativeMongoQuery(Pet, 2).find({ owner: { $in: ownerObjectIds } }).sort({ dueAt: 1 });

这里是另一个示例:

const mostRecentlyCreatedPets = await nativeMongoQuery(Pet, 1).aggregate([
  { $match: { owner: { $in: ownerObjectIds } } },
  { $sort: { createdAt: -1 } },
  { $limit: 1 }
]);

cnt参数告诉您从那里链接了多少东西。