1
此代碼正在傳入一個函數,並且沒有繼承我的EmployeesController對象的狀態。我能做些什麼來將我的EmployessController對象綁定到焦點事件上?CoffeeScript類字段未定義
class @EmployeesController
constructor: (@dateInput) ->
@dateInput.focus(@searchInputGainedFocus)
searchInputGainedFocus: ->
console.debug @dateInput
換句話說,當我給dateInput焦點時,console.debug打印undefined。