鉴于我有这个代码:
Ember.App.View = Ember.View.extend({
templateName: "templateA"
});
Ember.App.View = Ember.View.extend({
templateName: "templateB"
});
Ember.App.ViewC = Ember.CollectionView.extend({
itemViewClass: "Ember.View",
contentBinding: "SomeController"
});
Run Code Online (Sandbox Code Playgroud)
有没有办法将不同模板的视图添加到CollectionView?
ember.js ×1