3

我在不同的文章中看到了关于如何从 RequireJS 定义中返回 Backbone 集合(或视图)的不同示例。例如:

define(['models/person'], function( person ) {
    var personCollection = Backbone.Collection.extend({
        model: person,
        url: "api/person"

    });
    // do this?
    return new personCollection();
    // or this?
    //return personCollection;
});

这两种方法都有内存优势吗?是否有标准的设计模式规定应该使用哪个?

同样的问题也适用于视图,因为我已经看到它们也以两种方式完成。

4

1 回答 1

0

我会做第二种方式,因为那样你会收到对“蓝图”的引用,而不是对象本身。在大多数情况下,应该希望自己初始化对象创建。

此外,即使您只想创建单个集合实例,我也建议您使用这样的工厂方法:

define(['models/person'], function( person ) {
    var personCollection = Backbone.Collection.extend({...}),
        singleCollection,
        export = {
          getInstance = function (options) {
            if (!singleCollection) {
              singleCollection = new personCollection(options);
            }
            return singleCollection;
          }
        }

    return export;
});

然后你可以这样称呼它:

require('models/person', function (person) {
  var personCollection = person.getInstance(options);
}
于 2013-03-26T13:00:03.070 回答