CollectionView无法使用空集合呈现

时间:2013-05-23 09:35:29

标签: events marionette collectionview

为什么我的Marionette CollectionView不能使用空集合?

我正在尝试在CompositeView中呈现CollectionView(它是项目列表中每个项目中的任务列表)。一切正常,直到我将一个空集合传递到CollectionView。集合 允许为空;一个项目很容易就没有任务分配给它。

Chrome显示的错误是

  

未捕获TypeError:对象[object Object]没有方法'on'

中传递的项目集合有效Backbone.Collection以及TasksCollection 过滤方法返回的任务列表,这就是我无法弄清楚为什么会出现上述错误的原因。

Marionette的CollectionView可以接受一个空集合(它有一个emptyView属性),那么为什么在传入一个时会出错呢?我假设它试图将事件绑定到应该“正常工作”的集合 - 它只是缺少的模型。

我的任务集合如下所示:

var TasksCollection = Backbone.Collection.extend({
    model: TaskModel,
    byProject: function(projectId) {
        var matches = this.filter(function(task) {
            return task.get('projectId') == projectId;
        }, this);

        return new TasksCollection (matches);
    },
    complete: function(state) {
        return new TasksCollection (this.where({ complete: state }));
    }
});

我的观点如下:

// Single task item
var TasksListView = Marionette.CollectionView.extend({
    tagName: 'ul',
    className: 'tasks nav nav-stacked nav-pills',
    itemView: Minuteboy.views.TaskItem,
    emptyView: Templates['partials/tasks-empty']
});

// Project item (should probably be a Layout or CompositeView)
var DashboardProject = Marionette.ItemView.extend({
    tagName: 'article',
    template: Templates['partials/dashboard-project'],
    initialize: function() {
        this.on('render', function() {
            var tasks = AllProjectTasks.byProject(this.model.get('id')).complete(false);

            this.$el.find('.tasks-wrapper').html(new TasksListView({ 
                collection: tasks
            }).render().el);
        });
    }
});

// Containing view with page title and container for projects list
var DashboardPage = Marionette.CompositeView.extend({
    template: Templates['pages/dashboard'],
    itemView: DashboardProject,
    itemViewContainer: '#content'
});

最后,我实例化了这样的页面视图:

var page = new DashboardPage({
    collection: // A valid Backbone.Collection
});

1 个答案:

答案 0 :(得分:2)

这是我的错误。我没有使用某种视图对象来获取CollectionView的emptyView属性,而是使用了一个模板(本例中为Handlebars)。我工作的CollectionView看起来像这样:

var EmptyList = Marionette.ItemView.extend({
    tagName: 'li',
    template: Templates['partials/tasks-empty']
});

Minuteboy.views.TaskList = Marionette.CollectionView.extend({
    tagName: 'ul',
    className: 'tasks nav nav-stacked nav-pills',
    itemView: Minuteboy.views.TaskItem,
    emptyView: EmptyList
});

请注意itemView行:

itemView: Minuteboy.views.TaskItem

以前是

itemView: Templates['partials/tasks-empty']

错误