1 Star 1 Fork 0

测试应用/测试仓库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
05_ES6_Proxy.html 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
culvert 提交于 2022-10-17 12:34 . 课件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta name="google" content="notranslate" />
<meta name="format-detection" content="telephone=no,email=no" />
<title>Document</title>
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<script>
/**
* Proxy 预处理
* - new Proxy({},{})
*/
let obj = {
name: 'zhangsan',
age: 18
}
let _obj = new Proxy(obj, {
get: function (target, key) {
console.log('看门大爷不让你看');
return target[key].toUpperCase();
},
set: function (target, key, val) {
console.log('触发了设置');
// console.log(target, key, val);
let _sex = 1;
if (val == '') {
_sex = 2
}
return target[key] = _sex;
}
})
console.log(_obj.name);
_obj.sex = '';
// _obj.name
console.log(obj);
console.log(_obj);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/test-application/test-warehouse.git
git@gitee.com:test-application/test-warehouse.git
test-application
test-warehouse
测试仓库
master

搜索帮助