我对以下代码打印出“this.text”有疑问。
我需要一个包装器功能才能使其工作。这太麻烦了。
有没有更简单的方法(没有额外的包装器)让它工作?
function Class1() {
this.text = "test";
}
Class1.prototype.show = function() {
console.log(this);
console.log(this.text);
}
var testClass = new Class1();
function funWithCallBack(cb) {
cb();
}
// it will show "undefined" because "this" scope changes to window
funWithCallBack(testClass.show);
function wrapper() {
testClass.show();
}
// this one will work but troublesome
funWithCallBack(wrapper)