1 Star 0 Fork 0

过青城/ES5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
Felix Liu 提交于 2024-08-01 11:49 . init
<!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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/qing-chen-l/es5.git
git@gitee.com:qing-chen-l/es5.git
qing-chen-l
es5
ES5
master

搜索帮助