私はこのルーターを持っています
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/