美文网首页
Object.create和Object.definePrope

Object.create和Object.definePrope

作者: 宽广宁静 | 来源:发表于2018-03-29 22:50 被阅读0次

    var obj={
    getName(){
    return this.name
    }
    }
    var obj2=Object.create(obj,{
    hehe:{
    set:function(value){
    console.log('正在设置name')
    this.nameCopy=value //不能是 this.name,否则无限调用
    },
    get:function(){
    console.log("正在获取name")
    return this.nameCopy //不能是 this.name,否则无限调用
    }
    }
    })

    相关文章

      网友评论

          本文标题:Object.create和Object.definePrope

          本文链接:https://www.haomeiwen.com/subject/zkopcftx.html