Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
194 views
in Technique[技术] by (71.8m points)

为什么这里的this被改变了

class Test {
    test(){
        console.log(this)
    }
}

let test1 = new Test()


let {test} = new Test()
test1.test() //Test
//怎样才能让这里实现啊
test() //undefined

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
class Test {
    constructor(){
        this.test = this.test.bind(this)
    }
    test(){
        console.log(this)
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...