试试吧
{{#linkTo 'team.bob'}}bob{{/linkTo}}
在您之间可以通过这种方式简化您的路由器映射 - 如果它与路由名称不同,您只需要指定路径。
App.Router.map(function() {
this.route("site", { path: "/" });
this.route("about");
this.resource("team", function(){
this.route('bob');
});
});
更新
在此处查看一个工作示例
总之,您需要提供 TeamBobRoute 的 renderTemplate 函数的实现,您可以在其中明确指定要呈现模板的位置bob
。使用渲染选项into
,您可以覆盖默认行为,渲染到父插座,并选择要渲染到的父模板
App.TeamBobRoute = Ember.Route.extend({
renderTemplate:function(){
this.render('bob',{
into:'application',
});
}
});
<script type="text/x-handlebars" data-template-name="site-template">
This is the site template
{{#linkTo 'about'}}about{{/linkTo}}
{{#linkTo 'team'}}team{{/linkTo}}
</script>
<script type="text/x-handlebars" data-template-name="about">
This is the about page
</script>
<script type="text/x-handlebars" data-template-name="team">
This is the team page
{{#linkTo 'team.bob'}}bob{{/linkTo}}
</script>
<script type="text/x-handlebars" data-template-name="bob">
This is the bob page
</script>
<script type="text/x-handlebars">
This is the application template
{{outlet}}
</script>
仅供参考,渲染方法支持以下选项:into, outlet and controller
如下所述。
PostRoute
由路由器定义的名称是post
。
默认情况下,渲染将:
- 渲染
post
模板
- 使用
post
视图 ( PostView
) 进行事件处理(如果存在)
- 和
post
控制器 ( PostController
),如果存在
- 进入模板的
main
出口application
您可以覆盖此行为:
App.PostRoute = App.Route.extend({
renderTemplate: function() {
this.render('myPost', { // the template to render
into: 'index', // the template to render into
outlet: 'detail', // the name of the outlet in that template
controller: 'blogPost' // the controller to use for the template
});
}
});
如果您的应用程序模板中有一个命名模板,那么您将以这种方式定位它
App.TeamBobRoute = Ember.Route.extend({
renderTemplate:function(){
this.render('bob',{
into:'application',
outlet:'team-member',
});
}
});
<script type="text/x-handlebars">
This is the application template
{{outlet 'team-member'}}
{{outlet}}
</script>