我正在使用 MonocleMVC。我正在使用以下代码创建一个新的类实例:
__Controller.Lists = new ListCtrl('article#lists')
(__
内指Monocle
)
里面的代码ListCtrl
有效,但我无法访问变量__Controller.Lists
。它说它是未定义的。
但是,__Controler.Sessions
在以下代码中定义:
__Controller.Sessions = new SessionCtrl('section#splash')
更新
似乎这段代码阻止了类被定义:
class ListCtrl extends Monocle.Controller
# THIS CONSTRUCTOR
constructor: ->
super
__Model.List.bind "create", @bindCreate
__Model.List.bind "change", @bindChange
__Model.List.bind "error", @bindError
__Model.List.bind "destroy", @bindDestroy
@bindChange()
更新 2
转出@bindChange()
是原因。知道为什么吗?