javascript - How to do a findOneAndUpdate with bluebird promises (mongoose) - Stack Overflow

admin2025-04-03  0

I cannot find any examples on how to resolve promises with bluebird when using mongoose's findOneAndUpdate.

var Promise = require("bluebird");
var mongoose = Promise.promisifyAll(require('mongoose'));

//actions is an array of objects with queries and upsert data

var promises = actions.map(function(arr) {
    return MyModel.findOneAndUpdate(arr.query, arr.upsertData, {'upsert': true}, function (err, doc) {
        if (err) {
            console.log('Error: ', err);
            //return err;
        } else {
            console.log('doc: ', doc);
            //return Promise.resolve();
        }
    });
});
//once all db transactions are finished:
Promise.all(promises)
    .then(function() {

        console.log('all done');

        //this is where I want to output all the documents once they are updated or added

    })
    .error(function(err) {
        console.log('error:', err);
    });

So far, I've looked at bluebird and also async. I need to pass different options to the query, which I could not get to work with either library.

I cannot find any examples on how to resolve promises with bluebird when using mongoose's findOneAndUpdate.

var Promise = require("bluebird");
var mongoose = Promise.promisifyAll(require('mongoose'));

//actions is an array of objects with queries and upsert data

var promises = actions.map(function(arr) {
    return MyModel.findOneAndUpdate(arr.query, arr.upsertData, {'upsert': true}, function (err, doc) {
        if (err) {
            console.log('Error: ', err);
            //return err;
        } else {
            console.log('doc: ', doc);
            //return Promise.resolve();
        }
    });
});
//once all db transactions are finished:
Promise.all(promises)
    .then(function() {

        console.log('all done');

        //this is where I want to output all the documents once they are updated or added

    })
    .error(function(err) {
        console.log('error:', err);
    });

So far, I've looked at bluebird and also async. I need to pass different options to the query, which I could not get to work with either library.

Share Improve this question asked Jun 18, 2015 at 12:54 reggiereggie 3,67414 gold badges64 silver badges102 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

Mongoose's Query class, an instance of which findOneAndUpdate() returns, has an .exec() method that returns a promise:

var promises = actions.map(function(arr) {
  return MyModel.findOneAndUpdate(arr.query, arr.upsertData, {'upsert': true}).exec();
});

You get the results in an array:

Promise.all(promises).then(function(results) { ... });
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743634206a214002.html

最新回复(0)