将参数传递给骨干视图

spr*_*man 5 javascript collections views backbone.js

刚开始使用Backbone.我有一个通用视图,可以将集合呈现为带有标题的列表.我目前正在将集合和标题传递给render方法,但这看起来有点奇怪.还有另一种方式更规范吗?

例如:

var ListView = Backbone.View.extend({
    template: _.template([
        "<div>",
        "<% if (title) { %><h2><%= title %></h2> <% } %>",
        "<% if (items.length > 0) { %>",
        "<ul>",
            "<% items.each(function(item) { %>",
            "<%= itemTemplate(item) %>",
            "<% }); %>",
        "</ul>",
        "<% } else { %><p>None.</p><% } %>",
        "</div>"
    ].join('')),

    itemTemplate: _.template(
        "<li><%= attributes.name %> (<%= id %>)</li>"
    ),

    render: function(items, title) {
        var html = this.template({
            items: items /* a collection */,
            title : title || '',
            itemTemplate: this.itemTemplate
        });

        $(this.el).append(html);
    }
});

var myView = new ListView({ el: $('#target') });
myView.render(myThings, 'My Things');
myView.render(otherThings, 'Other Things');
Run Code Online (Sandbox Code Playgroud)

Aus*_*tin 17

你应该在initialize()函数中传递属性:

initialize: function (attrs) {
    this.options = attrs;
}
Run Code Online (Sandbox Code Playgroud)

所以在这里你将属性作为对象传递,如下所示:

new MyView({
  some: "something",
  that: "something else"
})
Run Code Online (Sandbox Code Playgroud)

现在,您可以在此实例中的this.options中访问您可以访问的值

console.log(this.options.some) # "something"
console.log(this.options.that) # "something else"
Run Code Online (Sandbox Code Playgroud)

要传递集合,我建议制作一个父视图和一个子视图:

var View;
var Subview;

View = Backbone.View.extend({
    initialize: function() {
        try {
            if (!(this.collection instanceof Backbone.Collection)) {
                throw new typeError("this.collection not instanceof Backbone.Collection")
            }
            this.subViews = [];
            this.collection.forEach(function (model) {
                this.subViews.push(new SubView({model: model}));
            });
        } catch (e) {
            console.error(e)
        }
    },
    render: function() {
        this.subViews.forEach(function (view) {
            this.$el.append(view.render().$el);
        }, this);
        return this;
    }
});

SubView = Backbone.View.extend({
    initialize: function () {
        try {
            if (!(this.model instanceof Backbone.model)) {
                throw new typeError("this.collection not instanceof Backbone.Collection")
            }
        } catch (e) {
            console.error(e);
        }
    },
    render: function () {
        return this;
    }
});

testCollection = new MyCollection();
collectionView = new View({collection: testCollection});
$("body").html(collectionView.render().$el);
Run Code Online (Sandbox Code Playgroud)

您应该始终处理集合的模型,而不仅仅是集合的数据.