gpt4 book ai didi

javascript - 在 requirejs 中返回 Backbone 集合的标准方法

转载 作者:行者123 更新时间:2023-12-04 21:58:39 25 4
gpt4 key购买 nike

我在不同的文章中看到了关于如何从 RequireJS 定义返回主干集合(或 View ,就此而言)的不同示例。例如:

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

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

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

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

最佳答案

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

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

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);
}

关于javascript - 在 requirejs 中返回 Backbone 集合的标准方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15637601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com