我是靠谱客的博主 传统黑猫,最近开发中收集的这篇文章主要介绍ES6新内置对象Reflect和Proxy的基本使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Reflect

为操作对象提供的新API

列举常用的API
const obj = {
    name: 'swt',
    age: 20
  }
  
/*
 * 属性写入
*/
Reflect.set(obj, 'sex', '男')
console.log(obj) // {name: "swt", age: 20, sex: "男"}

/*
 * 属性读取
*/
const a = Reflect.get(obj, 'name')
console.log(a) // swt

/*
 * 属性删除
*/
Reflect.deleteProperty(obj, 'sex')
console.log(obj) // {name: "swt", age: 20}

/*
 * 属性包含
*/
const b = Reflect.has(obj, 'name')
console.log(b) // true

/*
 * 属性遍历
*/
const c = Reflect.ownKeys(obj)
console.log(c) // ["name", "age", "sex"]

Proxy

对象属性读写
const person = {
  name: 'cyw',
  age: 20
}
const personProxy = new Proxy(person, {
  
  get(obj, key) {
    return key in obj ? obj[key] : 'default'
  },

  set(obj, key, value) {
    if(key === 'age') {
      if(!Number.isIntegr(value)) {
        throw new TypeError(`${value} is not an int`)
      }
    }
    obj[key] = value
  }
})

personProxy.age = 10.5 // Uncaught TypeError: 10.5 is not an int
console.log(personProxy.name) // cyw
console.log(personProxy.sex) // default
监视数组操作
const list = []
const listProxy = new Proxy(list, {
  set(obj, key, value) {
    console.log('set', key, value)
    obj[key] = value
    return true
  }
})

listProxy.push(100)
// set 0 100
// set length 1

最后

以上就是传统黑猫为你收集整理的ES6新内置对象Reflect和Proxy的基本使用的全部内容,希望文章能够帮你解决ES6新内置对象Reflect和Proxy的基本使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部