2 Star 0 Fork 0

Weldon0/hrsaas-27

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
aa.html 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
Weldon 提交于 2022-04-27 17:32 . feat:员工页面展示
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
const obj = {
store: ["foo", "bar", "baz"],
[Symbol.iterator]() {
let index = 0;
const self = this;
return {
next() {
const result = {
value: self.store[index], // 当前被迭代到的数据
done: index >= self.store.length, // 表示迭代是否完成
};
index++;
return result;
},
};
},
};
for (const objElement of obj) {
console.log(objElement)
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weldon/hrsaas-27.git
git@gitee.com:weldon/hrsaas-27.git
weldon
hrsaas-27
hrsaas-27
master

搜索帮助