在Coffeescript中使用课程时,我遇到了一个重大问题,让我举例说明一下
class Bet constructor: () -> placeBet: -> $('#chips > div').bind 'click',-> amount = $(this).attr 'id' pile = $(this) switch amount when "ten" then this.bet pile,amount #This line causes a problem bet: (pile,amount) -> alert 'betting!'
未捕获TypeError:Object#没有方法’bet’
所以,目前我的类的实例方法没有被调用,
如何正确地调用我的类的bet方法,而不会与jQuery选择器的这种碰撞(这是我以为现在发生了什么)?
提前非常感谢!
解决方法
尝试这个:
class Bet constructor: () -> placeBet: -> that = this $('#chips > div').bind 'click',-> amount = $(this).attr 'id' pile = $(this) switch amount when "ten" then that.bet pile,amount) -> alert 'betting!'