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.
これを行うためのより良いアプローチはありますか? 誰でもリソースを提案できますか?