私は単純なクラス、ボックスを持っています:
class Box
constructor: (@idx, grid) ->
console.log("constructing", @idx)
@elem = document.createElement("div")
@elem.id = "box" + idx
@elem.className = "box"
@elem.onclick = @toggle
grid.appendChild(@elem)
toggle: () ->
alert("click")
console.log("My idx is: ", @idx)
コンストラクターが実行されると、「constructing 0」、「constructing 1」などが報告されるため、クラス属性が定義されていることがわかります。b.toggle() (b はボックス インスタンス) を呼び出すと、idx が適切に報告されます。しかし、ページ上の要素をクリックすると、@idx が未定義であると表示されます。
そのため、onclick側でボックスの属性が失われているようです。どうしてこれなの?
コンパイルされた Javascript は次のとおりです。
Box = (function() {
function Box(idx, grid) {
this.idx = idx;
console.log("constructing", this.idx);
this.elem = document.createElement("div");
this.elem.id = "box" + idx;
this.elem.className = "box";
this.elem.onclick = this.toggle;
grid.appendChild(this.elem);
}
Box.prototype.toggle = function() {
alert("click");
return console.log("My idx is: ", this.idx);
};
return Box;
})();
ありがとう!