sql >> データベース >  >> NoSQL >> MongoDB

sailsjsはORMなしでmongodbを使用します

    最初のnpm i mongodb IDをnew ObjectID(idStr)でラップする必要があるためです。 。

    次に、これを行うことができます:

    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の解析と文字列化、グローバル置換は好きではありません。ただし、stringifyを実行しない場合、mongo_idはすべてObjectIdになります。 s。

    次のように使用します:

    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 議論はあなたがそこから鎖でつながれたものの数を教えてくれます。



    1. Redisデータ構造から複数の値をアトミックにポップしますか?

    2. あるコレクションから別のコレクションへのmongoコピー(同じデータベース上)

    3. MongoDB $ isoWeek

    4. マングース:正規表現でフルネームをクエリ