我有这个路由器
App.Router.map(function() {
this.resource('about', function() {
this.route('new');
});
});
和
<script type="text/x-handlebars" data-template-name="about/new">
<h1>About/New Page</h1>
</script>
但是,当我去about/new
路由时,我只看到about
模板。那么,如何渲染嵌套路由的模板呢?
这是一个 jsfiddle:http: //jsfiddle.net/C4gSE/