3
@collection = new Backbonedemo.Collections.Posts()
@flashes = new Backbone.Collection.Flashes()
在其initialize
方法的骨幹路由器。
在路由器的new
方法,就是:
new: ->
view = new Backbonedemo.Views.PostsNew(collection: @collection, flashes: @flashes)
$('#posts_container').html(view.render().el)
的@collection
變量通行證就好了,但在render()
,console.log @flashes
回報undefined
。
那麼,我錯過了什麼?
清晰,簡潔 - 最重要的是,正確。非常感謝。 – PlankTon