2013-03-19 68 views

回答

0

更新:

看看這個博客帖子:http://rmosolgo.github.io/blog/2014/03/19/batman-dot-model-lifecycle-callbacks/

希望它能幫助!


我只是看着這個自己。我發現一個很好的辦法讓這個功能是一旦它被修建提上記錄監聽器,以模型的生命週期的優勢:

class App.Thing extends Batman.Model 
    constructor: -> 
    super # instantiates the record 

    @get('lifecycle').onEnter 'save', => 
     console.log('about to save!') 

    @get('lifecycle').onExit 'save', => 
     console.log('just saved!') 

    @ # return the record 

這不是記錄太多,但你可以看到the tests描述的完整記錄生命週期(步驟名稱,順序等等!)!

相關問題