简体   繁体   中英

How to perserve array value after multiple async callback in node js?

I am trying to execute multiple callback and at the same time storing value in array , but at the end array return empty.

Here is my code :

var sheetData = [];
async.forEachSeries(req.body.data, function (data, cb) {
    sheet.find({accountid: req.body.id}, function (err, doc) {
        if (doc == '') {// get the next worksheet and save it 
            var sheet = new sheet({
                accountid: req.body.id, 
                sheetid: data.sheetid
            });

            var jsonData = {};
            jsonData.sheetid = data.sheetid;

            sheet.save(function (err, doc) {
                if (!err) {
                    sheetData.push(jsonData); // trying to push in array , success
                    console.log("-----sheet data---- : ", sheetData);// data available here
                }
            });
        }
    });
    cb();
}, function () {
    console.log("-----sheet data---- : ", sheetData);// empty array 
});

Where I am doing wrong? Can anyone suggest me ? Or, If any other alternative in nodejs.

Thanks

The callback is being called early. Try following:

var sheetData = [];
async.forEachSeries(req.body.data, function (data, cb) {
    sheet.find({accountid: req.body.id}, function (err, doc) {
        if (!doc) {
            return cb (); //sheet exists, call back early
        }

        // get the next worksheet and save it 
        var sheet = new sheet({
            accountid: req.body.id, 
            sheetid: data.sheetid
        });

        var jsonData = {};
        jsonData.sheetid = data.sheetid;

        sheet.save(function (err, doc) {
            if (!err) {
                sheetData.push(jsonData); // trying to push in array , success
                console.log("-----sheet data---- : ", sheetData);// data available here
                cb (); // all done, now we can call back
            }
        });
    });
}, function () {
    console.log("-----sheet data---- : ", sheetData);// lots of sheets
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM