0
工作,我有emberjs模板編譯不RC1
Esploreo.TE.Views.ItemView = Ember.View.extend({
elementId : "item",
templateName : 'itemTemplate'
});
和像
<script type="text/x-handlebars" data-template-name="itemTemplate">
content of templat
</script>
模板和一切工作良好。但我不想使用這種類型的編碼。在以前版本的灰燼有可能寫模板代碼中的視圖的定義,像這樣:
Esploreo.TE.Views.ItemView = Ember.View.extend({
elementId : "item",
template: Em.Handlebars.compile('content of template'),
});
,但它不工作(emberjs 1.0.0-RC.1)。此功能已從此版本中刪除?
我想使用這種類型的解決方案,因爲我不想爲一個模板創建一個html文件(或使用index.html)。 – RedBass 2013-02-21 12:57:18