在javascript中按顺序履行

在javascript中按顺序履行

This question already has answers here:
How do I return the response from an asynchronous call?
                                
                                    (38个答案)
                                
                        
                3年前关闭。
            
        

我一直在尝试使用诺言,通过找到在最短的时间内工作的人来使人们适应轮班。为此,我使用汇总将每个人的可用性文档与其包含上次工作时间的记录文档相关联。似乎它跳过了与承诺有关的整个代码部分,因为它会将selectedPeopleList打印为空数组。这是我的代码:

var selectedPeopleList = [];

var sequentially = function(shifts) {

var p = Promise.resolve();

shifts.forEach(function (){
   p=p.then( function() { return collection.aggregate([
       {
          $lookup:
            {
              from: "personRecord",
              localField: "ATTU_ID",
              foreignField: "ATTU_ID",
              as: "record"
            }
        },

        {
          $match : { 'Available[]' : { $elemMatch : { $eq : shift.value } }, "record.ATTU_ID": { $nin : _.map(selectedPeopleList, 'ATTU_ID') } }
        },

        {
          $sort : { "record.lastShift" : 1 }
        }
          ]).toArray(function(err, docs){
            assert.equal(err, null);

          }).then(function (result) {
            if(docs && docs.length) {
              selectedPeopleList.push({ ATTU_ID : docs[0].ATTU_ID, Name: docs[0].Name });
              console.log(docs[0]);
            }
          });
        });
  })
  return p;
};
console.log(selectedPeopleList);

最佳答案

承诺不会使异步代码同步

将最后一行更改为

p.then(function() {
    console.log(selectedPeopleList);
});


而且,您不需要在forEach中返回任何内容,因为根本不使用返回值

关于javascript - 在javascript中按顺序履行 promise ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41819215/

10-10 03:35