如何进行循环同步

时间:2016-07-01 12:56:48

标签: node.js

我有一个问题,如果我想让for循环同步。

因为现在我的代码将在for循环完成后执行。

它会导致我的功能只工作一次。 请告诉我如何编辑它!

Code

output

1 个答案:

答案 0 :(得分:0)

查看异步库 http://caolan.github.io/async/docs.html#.each

async.each(openFiles, function(file, callback) {

    // Perform operation on file here.
    console.log('Processing file ' + file);

     callback();

}, function(err) {

   if(!err){
     //because now my code will execute when for loop is done.
     //code here will run only after loop is done
    }

});