我正在做一个基于 Chaplin-boilerplate 的示例项目,并且工作完美,但我无法理解在获取完成后视图如何呈现,例如使用 Backbone 可以在事件更改时使用,或者使用回调fetch 方法,但是用 chaplinjs 是怎么做到的?,有没有使用 Backbone 的事件更改?,什么类的 Chaplinjs 绑定了事件?装订怎么样?
class CampaignController extends Chaplin.Controller
title: 'Campaign'
index: (params) ->
campaign = new Campaign()
@view = new CartView model: campaign
class CartView extends View
template: template
template = null
container: '#cart'
autoRender: true
className: 'cart'
initialize: ->
super
render: ->
super
class Campaign extends Model
initialize: (attributes, options) ->
super
@urlRoot = "http://localhost/store/js/test-data/cart.json"
@fetch()