根據你的代碼,App.EventsController
有一個事件列表,現在讓我們說我們希望UI有一個顯示事件的列表,並且對於每個事件,我們希望該視圖具有一個刪除按鈕,該按鈕刪除該事件時用戶點擊
一種方法是使用Ember.CollectionView
,集合視圖顧名思義是爲這些類型的需求量身定做的,在許多Ember示例中,視圖的用法沒有被定義,因爲燼會爲你自動生成它但在某些情況下,我們可能需要明確定義視圖來滿足我們的要求
App.EventsView = Ember.CollectionView.extend({
// It needs a list of data to iterate upon
// We are binding it to the controllers content data which
// is a list of events
contentBinding: "controller.content",
appendSpan: function(){
view = Ember.View.create({tagName: 'span'});
this.get("childViews").forEach(function(child){
view.appendTo(child);
});
},
// Now we need to also define a view template that will be
// generated for all the elements in the content array
// This could in turn be another collection view if required
// I am going to keep it simple for now
itemViewClass: Ember.View.extend({
templateName: "event",
deleteEvent: function(){
// Implement Delete
this.get("content").deleteRecord();
},
notifyUser: function(){
// The record doesn't get deleted as soon as user clicks, the request goes to
// server and server deletes the record and sends back the response to the
// client, Hence I'm using an observer here on isDeleted property of the record
if(this.get('content.isDeleted')){
alert("Record deleted Successfully");
}
}.observes('content.isDeleted')
})
})
重要提示裏面的的CollectionView定義this.get("content")
指事件的陣列,而在itemViewClassthis.get("content")
指的是單個事件對象現在
//Defining the template
//Assuming the event model has a name property
<script type="text/x-handlebars" data-template-name="event">
Name: {{view.content.name}}
<a {{action deleteEvent target="view"}} href="#">Delete Event</a>
</script>
當你打你的APPLICATION_URL /事件 你」我希望這可以清除一些概念
有關CollectionView的更多信息
更新按照註釋:
如果要追加另一種觀點認爲每個孩子視圖,您可以通過編輯itemViewClass的模板,這樣做如下
<script type="text/x-handlebars" data-template-name="event">
Name: {{view.content.name}}
<a {{action deleteEvent target="view"}} href="#">Delete Event</a>
{{ view App.SomeOtherView }}
</script>
它可以是一個部分過如下
<script type="text/x-handlebars" data-template-name="event">
Name: {{view.content.name}}
<a {{action deleteEvent target="view"}} href="#">Delete Event</a>
{{ partial "somePartial" }}
</script>
,或者如果你想這樣做編程的說,你在EventsView模板點擊一個按鈕,點擊所有孩子的看法米烏斯季有附加到它的跨度標籤(我非常不擅長給人的例子)
//This is the template for App.EventsController,
//template-name = "events" => view is App.EventsView and controller App.EventsController
<script type="text/x-handlebars" data-template-name="events">
<a {{action appendSpan target="view"}} href="#"> Append </a>
</script>
appendSpan
在的CollectionView
極好的響應定義。這意味着我可以直接調用{{view「ScheduleApp.TripsView」}}並且ember將加載所有的視圖。所以view.content是每個Trip,但內容仍然是數組,控制器仍然是TripsController。那麼如何在這些生成的視圖上調用appendTo? – 2013-02-28 20:38:44
糾正其{{view ScheduleApp.TripsView}},再次TripsView是Ember.CollectionView的一個實例,然後在TripsView中view.content引用Array,但裏面TripsView的itemViewClass view.content引用單個Trip,查看關於添加的更新答案查看,我不確定你是否要求相同,如果不是,你可以發佈關於你的用例的小提琴嗎? – 2013-03-01 06:29:38