ES6 - handler.set()



以下是使用构造函数和自定义 getter 方法(fullName)定义类 Student 的示例。构造函数使用 firstName 和 lastName 作为参数。该程序创建了一个代理,并定义了一个在 firstName 和 lastName 上拦截所有 set 操作的 handler 对象。如果属性值长度不超过 2,该 handler 对象将抛出一个错误。

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }
      get fullName(){
         return `${this.firstName} : ${this.lastName}`
      }
   }
   const handler = {
      set: function(target,property,value){
         if(value.length>2){
            return Reflect.set(target,property,value);
         } else { 
	        throw 'string length should be greater than 2'
         }
      }
   }
   
   const s1 = new Student("Tutorials","Point")
   const proxy = new Proxy(s1,handler)
   console.log(proxy.fullName)
   proxy.firstName="Test"
   console.log(proxy.fullName)
   proxy.lastName="P"
</script>

以上代码的输出将如下所示 -

Tutorials : Point
Test : Point
Uncaught string length should be greater than 2
广告