उदाहरण बनाने की आवश्यकता नहीं है new hostModel()
यहाँ... सीधे उपयोग करें hostModel
और save()
. की भी कोई आवश्यकता नहीं है साथ ही क्योंकि कई सम्मिलित करने से ही संग्रह बनते हैं... और सुनिश्चित करें कि payload.data
वस्तुओं की सरणी है
router.post('/host', function (req, res, next) {
const array = [{hostname: 'hostname', timestamp: 'timestamp'},
{hostname: 'hostname', timestamp: 'timestamp'}]
var payload = req.body;
(async function(){
const insertMany = await hostModel.insertMany(array);
console.log(JSON.stringify(insertMany,'','\t'));
res.status(200).send('Ok');
})();
});