私はアウトレットを新しいルータアプローチでどのように接続するのか混乱しています。新しいember.jsルーティング:アウトレットに接続する方法は?
のindex.html:
...
<script type="text/x-handlebars" data-template-name="application">
<h4>The application handelbar</h4>
{{! outlet 1}}
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
<h4>The index handelbar</h4>
{{! outlet 2 and 3}}
{{outlet nav}}
{{outlet main}}
</script>
<script type="text/x-handlebars" data-template-name="main">
<h4>The main handelbar</h4>
</script>
<script type="text/x-handlebars" data-template-name="nav">
<h4>The nav handelbar</h4>
</script>
...
app.js:
...
App.Router.map(function(match) {
this.resource("index", { path: "/" });
this.route("test");
});
App.IndexController = Ember.Controller.extend({
});
App.IndexView = Ember.View.extend({
templateName: 'index'
});
...
このコードは、出口1をレンダリングします。
質問:
- はなぜアウトレット-1がレンダリングされますか? outlet-1と「index」はどのように接続されていますか?
- コンセント2と3を同じ「インデックス」サイトに接続するにはどうすればよいですか?
おかげ
MIW
非常に良い説明、ありがとうございます! – user1984778
問題なし、喜んで助けてください:) – hankang