当前位置: 首页 > 工具软件 > jsproxy > 使用案例 >

JS代理Proxy对象的使用

壤驷乐邦
2023-12-01

JS代理Proxy对象的使用

<div id="person"></div>

<script>
  const person = {
    name: "Tom",
  };

  // 设置值的时候,界面显示也随之变化
  const handler = {
    set: function (obj, prop, value) {
      obj[prop] = value;
      document.getElementById("person").innerText = value;
    },
  };

  const personProxy = new Proxy(person, handler);
</script>

参考
JavaScript代理的惊人力量

 类似资料: