Coffeescript の使用中にいくつかのスコープの問題に対処しています。
drawFirstLine: (currentAngle) ->
currentAngle = currentAngle # = 1
switch @type
# set @endAngle to pick up later on
# Math.PI * 2 is the endpoint of a circle divided by seconds times current seconds
when "seconds" then @endAngle = Math.PI * 2 / 60 * @seconds
when "minutes" then @endAngle = Math.PI * 2 / 60 * @minutes
when "hours" then @endAngle = Math.PI * 2 / 24 * @hours
@context.arc(@center_x, @center_y, 100, @startAngle, currentAngle, @counterClockWise)
@context.lineWidth = 15
console.log('drawn')
text = "28px sans-serif";
@context.fillText(text, @center_x - 28, @center_y - @canvas.width / 5)
@context.stroke()
currentAngle++;
if currentAngle < @endAngle
requestAnimationFrame( -> @drawFirstLine(currentAngle / 100) )
上記のコードの下部でわかるように、私は今いる場所で関数を何度も呼び出そうとしています。@drawFirstLine
しかし問題は、別の関数 (requestAnimationFrame 関数) 内で使用できないことです。プレーンな JavaScript ではvar self = this
、self を使用して参照できます。しかし、コーヒースクリプトでこれを処理する方法を知っている人はいますか?
前もって感謝します、