我有
Esploreo.TE.Views.ItemView = Ember.View.extend({
elementId : "item",
templateName : 'itemTemplate'
});
和一个模板
<script type="text/x-handlebars" data-template-name="itemTemplate">
content of templat
</script>
一切都很好。但我不想使用这种类型的编码。在之前的 Ember 版本中,可以在视图定义中编写模板代码,如下所示:
Esploreo.TE.Views.ItemView = Ember.View.extend({
elementId : "item",
template: Em.Handlebars.compile('content of template'),
});
但它不起作用(emberjs 1.0.0-RC.1)。此版本中删除了此功能?