sql >> Database >  >> NoSQL >> MongoDB

Mongoose slaat documenten op, zelfs als ik controleer of het document al bestaat

JohnnyHK wees op mijn fout. Met behulp van de bibliotheek, Async - ik heb de code aangepast om zijn antwoord weer te geven:

function insertFeedItems(feedItems,newFeedID){

async.eachSeries(feedItems, function(item, eachCallBack) {

    let firstName = item.author.substr(0, item.author.indexOf(' '));
    let lastName = item.author.substr(item.author.indexOf(' ') + 1);
    async.waterfall([
            (callback) => {
                authorController.createAuthorInternally(firstName, lastName, function(author) {
                    return callback(null, author, item.categories);
                });
            },
            (author, categories, callback) => {
                categoryController.createCategoryInternally(categories, function(categories) {
                    return callback(null, author, categories);
                });
            },
            (author, categories, callback) => {
                feedEntryController.createFeedEntry(item, author, categories, function(entry) {
                    return callback(null, author, categories, entry);
                });
            },
        ],
        function(waterfallError) {
            if(!waterfallError){
                eachCallBack();
            }
        });
}, function(eachSeriesErr) {
    if(eachSeriesErr) {
        console.log('An item failed to process');
    } else {
        console.log('All items have been processed successfully');
    }
});
}



  1. Mongodb update diep genest subdocument

  2. OpenShift Python mongoDB-omgevingsvariabelen niet ingesteld / kan geen verbinding maken

  3. Redis uitvoeren op Travis CI

  4. Hoe voorvallen tellen in genest document in mongodb?