2

只是想知道何时呈现项目列表。
使用 Meteor.RenderList 和 Meteor.Render 是不是性能最好,还是应该尽量使用 Templates?

4

1 回答 1

0

我将模板 {{#each}} 和 Meteor.render 与骨干路由器一起使用。我像这样制作一个函数包装 Meteor.render

render: (where, which, options) ->
    self = @
    self.options = options
    $ where.empty().html Meteor.render Template[which]

然后在骨干路由器内部看起来像

routes:
    '': 'home'

home: ->
    render 'body', 'page-home'

和 page-home.html 包含模板和 {{#each}} 来获取我的列表。

<template name="page-home">
    {{> module-streams-list}} blah blah blah
</template>

我也想知道人们如何处理页面 Meteor.render/Meteor.renderList 与路由。

于 2012-10-15T11:13:04.123 回答