我有简单的控制器
@Blobber.module "PlacesApp.Show", (Show, App, Backbone, Marionette, $, _) ->
Show.Controller =
showPlace: (place) ->
showView = @getShowView place
App.mainRegion.show showView
getShowView: (place) ->
new Show.Place
model: place
并查看文件:
@Blobber.module "PlacesApp.Show", (Show, App, Backbone, Marionette, $, _) ->
class Show.Place extends App.Views.ItemView
template: "places/show/templates/_place"
我想在我的place
模型实例上访问一个名为的方法,它通过 Supermodel.js ( http://pathable.github.io/supermodel/ )返回模型place.posts()
的关联。我正在使用 Eco 模板 ( https://github.com/sstephenson/eco ),并且一直在遵循http://www.backbonerails.com上的教程中的模式。Collection
Post
任何人都知道我应该如何访问posts
我的生态模板中的关联?最好我希望能够访问实际的方法.posts()
,但我会满足于在我的视图中创建一个posts
变量并将其传递到模板中。
谢谢,如果您需要更多信息,请询问。