我試圖呈現一個視圖動態地Ember.js灰燼無法找到模板
Resume.ItemView = Em.View.create({
click: function(){
var view = Em.View.create({
templateName: 'my_exp'});
view.append();
},
});
我在/模板my_exp.hbs
,但得到
Uncaught Error: assertion failed: You specified the templateName my_exp for <Ember.View:ember261>, but it did not exist.
有試圖做到這一點的更好方法?誰能建議資源?
如果你到控制檯,輸入'Ember.TEMPLATES',你看到你的模板集合中? – MilkyWayJoe 2013-05-08 22:45:08
是: Ember.TEMPLATES; 對象{application:function,... my_exp:function ...} – 2013-05-08 22:49:04
我的朋友...工作。謝謝 – 2013-05-09 02:40:18