9

我想创建一个日历,它是一天的集合,每一天都是约会的集合。day对象的结构是:

day:{
    date:'08-06-2012',
    appointment: {
        time_begin:'12:55',
        time_end: '16:40',
        customer: 'Jaime'
    }
}

此刻我有这个模型和观点:

// CALENDAR COLLECTION
App.Calendar.Collection = Backbone.Collection.extend({
    // MODEL
    model: App.Day.Model
}

当日历集合从服务器获取数据时,它会获取包括约会在内的完整日期对象。

// CALENDAR VIEW
App.Calendar.View = Backbone.Marionette.CompositeView.extend({
    // TEMPLATE
    template: Handlebars.compile(templates.find('#calendar-template').html()),
    // ITEM VIEW
    itemView: App.Day.View,
    // ITEM VIEW CONTAINER
    itemViewContainer: '#calendar-collection-block'
});

// DAY MODEL
App.Day.Model = Backbone.Collection.extend({
    // PARSE
    parse:function(data){
        console.log(data);
        return data;
    }
});

// DAY VIEW
App.Day.View = Backbone.Marionette.CompositeView.extend({
    collection: App.Day.Model,
    itemView: App.CalendarAppointment.View, //---->I NEED TO DEFINE THIS, NOT SURE HOW
    template: Handlebars.compile(templates.find('#day-template').html())
});

day 模型需要是约会的集合,并且不需要从服务器获取数据,因为它每天都在里面。

我怎样才能做到这一点?

4

2 回答 2

15

如果我正确理解了这个问题,那么您是在问如何将数据从Day模型、Appointment集合中获取到CalendarApointmentViewitemView 中?

Day.View可以设置为填充collection此复合视图,然后将其推送到项目视图中:


// DAY VIEW
App.Day.View = Backbone.Marionette.CompositeView.extend({
    collection: App.Day.Model,
    itemView: App.CalendarAppointment.View,
    template: Handlebars.compile(templates.find('#day-template').html()),

    initialize: function(){

      // since `this.model` is a `Day` model, it has the data you need
      this.collection = this.model.get("CalendarAppointments");

    }
});

需要注意的一件事:this.collection必须是有效的 Backbone.Collection。如果您的模型将约会数据存储为一个简单的数组,那么您需要这样做:


var appointments = this.model.get("CalendarAppointments");
this.collection = new AppointmentCollection(appointments);

希望有帮助。

于 2012-08-29T01:22:03.173 回答
2

这看起来像是主干关系的完美用例,它会自动处理嵌套数据的解析和创建嵌套集合结构。

于 2012-08-28T23:34:59.917 回答