标签: jquery node.js promise
我有这样的代码:
for(var i=0; i<data.length; i++) { promise.when(firstoperation()).then(function(){ Need to use data[i] here. }); }
它是一个嵌套的异步函数,无论如何都要将数据传递给它?没有使数据全局??