Make angular.forEach wait for promise after going to next object

前端 未结 7 1918
囚心锁ツ
囚心锁ツ 2020-12-03 03:25

I have a list of objects. The objects are passed to a deferred function. I want to call the function with the next object only after the previous call is resolved. Is there

相关标签:
7条回答
  • 2020-12-03 03:58

    It worked for me like this. I don't know if it is a right approach but could help to reduce lines

    function myFun(){
         var deffer = $q.defer();
         angular.forEach(array,function(a,i) { 
              Service.method(a.id).then(function(res) { 
                   console.log(res); 
                   if(i == array.length-1) { 
                          deffer.resolve(res); 
                   } 
              }); 
         });
         return deffer.promise;
    }
    
    myFun().then(function(res){
         //res here
    });
    
    0 讨论(0)
  • 2020-12-03 04:02

    It might help someone as I tried several of above solution before coming up with my own that actually worked for me (the other ones didn't)

      var sequence;
      objects.forEach(function(item) {
         if(sequence === undefined){
              sequence = doSomethingThatReturnsAPromise(item)
              }else{
              sequence = sequence.then(function(){
                   return doSomethingThatReturnsAPromise(item)
                         }); 
                     }
            });
    
    0 讨论(0)
  • 2020-12-03 04:05

    Before ES2017 and async/await (see below for an option in ES2017), you can't use .forEach() if you want to wait for a promise because promises are not blocking. Javascript and promises just don't work that way.

    1. You can chain multiple promises and make the promise infrastructure sequence them.

    2. You can iterate manually and advance the iteration only when the previous promise finishes.

    3. You can use a library like async or Bluebird that will sequence them for you.

    There are lots of different alternatives, but .forEach() will not do it for you.


    Here's an example of sequencing using chaining of promises with angular promises (assuming objects is an array):

    objects.reduce(function(p, val) {
        return p.then(function() {
            return doSomething(val);
        });
    }, $q.when(true)).then(function(finalResult) {
        // done here
    }, function(err) {
        // error here
    });
    

    And, using standard ES6 promises, this would be:

    objects.reduce(function(p, val) {
        return p.then(function() {
            return doSomething(val);
        });
    }, Promise.resolve()).then(function(finalResult) {
        // done here
    }, function(err) {
        // error here
    });
    

    Here's an example of manually sequencing (assuming objects is an array), though this does not report back completion or errors like the above option does:

    function run(objects) {
        var cntr = 0;
    
        function next() {
            if (cntr < objects.length) {
                doSomething(objects[cntr++]).then(next);
            }
        }
        next();
    }
    

    ES2017

    In ES2017, the async/wait feature does allow you to "wait" for a promise to fulfill before continuing the loop iteration when using non-function based loops such as for or while:

    async function someFunc() {
        for (object of objects) {
            // wait for this to resolve and after that move to next object
            let result = await doSomething(object);
        }
    }
    

    The code has to be contained inside an async function and then you can use await to tell the interpreter to wait for the promise to resolve before continuing the loop. Note, while this appears to be "blocking" type behavior, it is not blocking the event loop. Other events in the event loop can still be processed during the await.

    0 讨论(0)
  • 2020-12-03 04:10

    Yes you can use angular.forEach to achieve this.

    Here is an example (assuming objects is an array):

    // Define the initial promise
    var sequence = $q.defer();
    sequence.resolve();
    sequence = sequence.promise;
    
    angular.forEach(objects, function(val,key){
        sequence = sequence.then(function() {
            return doSomething(val);
        });
    });
    

    Here is how this can be done using array.reduce, similar to @friend00's answer (assuming objects is an array):

    objects.reduce(function(p, val) {
        // The initial promise object
        if(p.then === undefined) {
            p.resolve(); 
            p = p.promise;
        }
        return p.then(function() {
            return doSomething(val);
        });
    }, $q.defer());
    
    0 讨论(0)
  • 2020-12-03 04:11

    I use a simple solution for a connection to a printer that wait till the promise is over to go to the next.

    angular.forEach(object, function(data){
        yourFunction(data)
        .then(function (){
            return;
        })
    })
    
    0 讨论(0)
  • 2020-12-03 04:15

    check $q on angular:

    function outerFunction() {
    
      var defer = $q.defer();
      var promises = [];
    
      function lastTask(){
          writeSome('finish').then( function(){
              defer.resolve();
          });
      }
    
      angular.forEach( $scope.testArray, function(value){
          promises.push(writeSome(value));
      });
    
      $q.all(promises).then(lastTask);
    
      return defer;
    }
    
    0 讨论(0)
提交回复
热议问题