web-dev-qa-db-ja.com

NodeJSおよびMongoDB FindAndModify()は削除または更新する必要があります

nodejSを使用してmongodbでfindAndModifiyを実行しようとしています。これは私のコードです。

var nextBill = function (db, success, log) {
    var collection = db.collection('autoincrements');
    log.debug('autoIncrementRepository', 'nextBill');
    var result = collection.findAndModify({
        query: { _id: 'auto' },
        update: { $inc: { bill: 1 } },
        new: true
    });

    success(result.bill);
};

編集:

コールバックで試す

collection.findAndModify({
        query: { _id: 'auto' },
        update: { $inc: { bill: 1 } },
        new: true
    }, function (e, result) {
        success(result.budget);
    });

しかし、私にエラーを削除または更新する必要があります..しかし、私はそれをやっています..

15
colymore

ノードネイティブドライバー実装の .findAndModify() メソッドは、mongoShell実装とは異なります。上記のように更新するには、次のようにします。

collection.findAndModify(
   { "_id": "auto" },
   { "$inc": { "bill": 1 } },
   function(err,doc) {
     // work here

   }
);

奇妙なことに、オプションで指定したものを削除すると、一致したドキュメントが「削除」されます。

collection.findAndModify(
   { "_id": "auto" },
   { "$inc": { "bill": 1 } },
   { "remove": true },
   function(err,doc) {
     // work here

   }
);

主な違いは、アクションの「キー」セクションに名前を付けないことです。

18
Neil Lunn

http://mongodb.github.io/node-mongodb-native/2.0/api/Collection.html#findAndModify

上記のドキュメントは、2番目のパラメータが、複数のドキュメントがクエリに一致する場合に使用するドキュメントを選択するための並べ替え順序であることを指定しています。 2つのパラメータのみを指定すると、「削除または更新が必要です」というエラーメッセージが表示されます。

collection('MyCollection').findAndModify(
    { _id: "auto" },
    [],
    { $inc: { "bill": 1 } },
    { upsert: true, new: true },
    function(err,doc) {
       // work here
    }
);
9
Paul Van Camp
Hi I have followed this and it worked perfectly.

db.collection('test').findAndModify(
  {hello: 'world'}, // query
  [['_id','asc']],  // sort order
  {$set: {hi: 'there'}}, // replacement, replaces only the field "hi"
  {}, // options
  function(err, object) {
      if (err){
          console.warn(err.message);  // returns error if no matching object found
      }else{
          console.dir(object);
      }
  });
});
2
vijesh mundayat

これを試してくださいそれはnodejsで私のために働きました

users.findAndModify(
           { "_id": userid,"password":pwd},
           [['_id', 'asc']],
           { "$set":{"password":npwd}},
           {"upsert":false}
        ,function(err,result){
        //enter code here

    })
0
Veerakrishna P