sql >> Database >  >> NoSQL >> MongoDB

Voor let, niet ophogen als er hetzelfde item in de array staat

Ik weet dat dit een tijdje geleden is, maar dit kan jou (of misschien iemand anders) nog helpen, dus...

Misschien kun je dit proberen:

var newValue = 1;
var newSerialcode = req.body.serialCode; 
var newBloodgroup = req.body.blood_group; 
var newGetbloodcomponent = req.body.blood_component; 

Bloodinventory.find({ blood_component : { $in : newGetbloodcomponent} ,blood_group: { $in :newBloodgroup},chapter: { $in: [id] }}, function(err, bloodinventoryDocs) {

    for(let bloodinventory of bloodinventoryDocs) {
        // === change starts here === //
            // filter into a new array all the places where this particular blood component occurs
            let all_occurences = newGetbloodcomponent.filter(function(b){
                return b === bloodinventory.blood_component;
            });

            // to avoid incurring unnecessary processing and/or database costs, only continue if an occurence was actually found
            if(all_occurences.length > 0){
                // increment it by that amount (which will be the number of items filtered into the array)
                bloodinventory.num_stock = bloodinventory.num_stock + all_occurences.length;
                // ^^ you could also write this as 'bloodinventory.num_stock += all_occurences.length;'
            
                bloodinventory.save(function(err) {
                    if (err) {
                        console.log(err); 
                    } else {
                        console.log('success'); 
                    }
                });
            };
        // === change ends here === //
    }  
});



  1. Hoe verplaats ik een redis-database van de ene server naar de andere?

  2. Golang GraphQL MongoDB Worstelend om datum en id uit de database te halen

  3. Hiërarchische zoekopdrachten met Mongo met $graphLookup

  4. $unionWith - MongoDB's equivalent van UNION ALL