「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)