これよりも簡単になることはありませんが、テンプレートをレンダリング できません。私は明らかに単純なものを見逃していますが、これを何時間も見つめています。誰かがエラーを見つけることができますか?
クロムでデバッグすると、コントローラーと同様にビューが入力されていることがわかりますが、テンプレートが生きているようには見えません。ラップトップで実行している他のいくつかの ember テストが正常にレンダリングされます。
<script type="text/x-handlebars" data-template-name="index">
<h1>Application</h1>
<p>Your content here.</p>
{{outlet}}
</script>
Albumartist = Ember.Application.create();
Albumartist.Router.map(function(match) {
this.route('index', {path: '/'});
});
Albumartist.IndexView = Ember.View.extend({
});
Albumartist.IndexRoute = Ember.Route.extend({
});
Albumartist.IndexController = Ember.Controller.extend({
renderTemplate: function(controller, model){
console.log('hi');
}
});