为什么我在使用Mozart时会得到id =“undefined”?

时间:2013-09-26 04:04:54

标签: mozart-mvc

我没有得到任何控制台日志/错误,但我正在尝试创建的视图是插入没有通常ID的DIV:

<div id="undefined" view="" class="myclass"></div>

没有任何错误我不知道如何解决这个问题......

查看咖啡:

class App.SidebarView extends Mozart.View
  templateName: 'app/templates/sidebar_view'
  classHtml: 'sidebar-content'

  init: ->
    # stuff to come

查看hbs只有一些占位符文本。

1 个答案:

答案 0 :(得分:0)

你需要在init函数的开头调用super。

init: ->
  super
  #stuff to come