在Ember.js 关于渲染模板的指南的最后一个示例中,它说:
App.PostRoute = App.Route.extend({
renderTemplate: function() {
this.render('favoritePost', { // the template to render
into: 'posts', // the template to render into
...
这是否意味着“要渲染的模板”是“要渲染的模板”内的{{ partial }}、{{ outlet }}、{{ render }}或{{ template }}?
如果没有,有人可以举一个带有路由和模板的示例来区分“要渲染的模板”和“要渲染的模板”并展示它们应该如何使用this.render()
?