代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<style>
</style>
<body>
</body>
<script>
var items = [1, 2, 3, 4, 5, 6];
var results = [];
var running = 0;
var limit = 2;
;(function (){
console.log('111');
setTimeout(function () { console.log("success"); }, 2000);
console.log('222');
})();
function async(arg, callback) {
console.log('参数为 ' + arg + ' , 1秒后返回结果');
console.log(results);
// callback(arg * 2);
setTimeout(function () { callback(arg * 2); }, 1000);
console.log(arg);
console.log('after setTimeout');
}
function final(value) {
console.log('完成: ', value);
}
function series(item) {
if (item) {
async(item, function (result) {
results.push(result);
return series(items.shift());
});
} else {
return final(results[results.length - 1]);
}
}
//series(items.shift());
// items.forEach(function(item) {
// async(item, function(result){
// results.push(result);
// if(results.length === items.length) {
// final(results[results.length - 1]);
// }
// })
// });
// function launcher() {
// while (running < limit && items.length > 0) {
// var item = items.shift();
// async(item, function (result) {
// results.push(result);
// running--;
// if (items.length > 0) {
// launcher();
// } else if (running === 0) {
// final(results);
// }
// });
// running++;
// }
// }
// launcher();
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。