雖然它並沒有變得比這更簡單:fiddle我無法獲取要呈現的模板。我顯然錯過了一些簡單的東西,但現在已經主演了幾個小時。有人可以發現錯誤嗎?ember.js模板沒有呈現
在chrome中進行調試時,我可以看到輸入的視圖和控制器一樣,但模板看起來似乎不復生。我在我的筆記本電腦上運行了幾個其他的餘燼測試,結果很好。
<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');
}
});
謝謝!現在小提琴起作用了,它仍然不在本地工作。可能是一個依賴性問題。我會整理一下,謝謝。 – Rudi