我正在尝试在 Ember.js 中动态呈现视图
Resume.ItemView = Em.View.create({
click: function(){
var view = Em.View.create({
templateName: 'my_exp'});
view.append();
},
});
我在 /templates my_exp.hbs
但是得到
Uncaught Error: assertion failed: You specified the templateName my_exp for <Ember.View:ember261>, but it did not exist.
有没有更好的方法来尝试这样做?谁能推荐资源?