function getMoney(){ var money=[100,200,300] for( let i=0; i<money.length; i++){ compute.exec().then(()=>{ console.log(money[i]) //alert(i) }) } }
//compute.exec()这是个异步方法,在里面处理一些实际业务
正确处理思路
async function getMoney(){ var money=[100,200,300] for( let i=0; i<money.length; i++){ await compute.exec().then(()=>{ console.log(money[i]) //alert(i) }) } }
标签:getMoney,异步,console,log,money,循环,var,操作 From: https://www.cnblogs.com/alwaysrun/p/17178465.html