$ ->
window.app.helpers = new class Helpers
constructor: (@name) ->
@slideRecipeId = $("#slideRecipe")
@specialities = ["A", "B", "C"]
setTimeout @countUpRecipes, 3000
countUpRecipes: ->
@slideRecipeId.html(@specialities[Math.floor(Math.random() * @specialities.length)])
问题是在加载时我遇到了这些错误:
Uncaught TypeError: Cannot read property 'length' of undefined
代码有什么问题?感谢。
答案 0 :(得分:1)
您需要在调用@countUpRecipes
时绑定上下文:
setTimeout =>
@countUpRecipes
, 3000