gpt4 book ai didi

javascript - 主干.js : Is cid only used for Models

转载 作者:行者123 更新时间:2023-12-03 20:15:17 26 4
gpt4 key购买 nike

在 Backbone.js 中,有一个我看到的名为“cid”的属性......它是否仅用于模型对象(而不是 View 或集合)

“id”和“idAttribute”也仅供模型对象使用吗?有什么不同?如果您能用一个非常基本的示例进行解释,那就太好了。

最佳答案

cid 是主干模型的一个属性,在为每个模型分配一个真实的 id 之前,它充当每个模型的唯一标识符。在分配模型 id 或匹配 idAttribute 的属性后,不再使用 cid。有关详细信息,请参阅 backbone.js docs . View 也有 cid,但更多用于内部簿记和 jquery 事件绑定(bind)/解除绑定(bind)。

id 也是模型的特殊属性,它用于保存模型的后端标识符(大多数数据库为每个新条目/行创建某种标识符)。当这个标识符被标记为 id 时,Backbone.js 就可以正常工作,但是有一些数据库以不同的方式标记它们的标识符(例如 MongoDB 带有 _id)。

在这些情况下,Backbone 不知道开箱即用地将该属性从属性移动到 id -property。这就是 idAttribute 派上用场的地方:您可以将其定义为指向后备标识符的标签(在 MongoDB 的情况下为 _id),然后 Backbone 知道分配给 _id -id 属性的属性。

例子:

var noIdModel = new Backbone.Model();
noIdModel.id // this will be undefined
noIdModel.cid // this will be something like c1

var idModel = new Backbone.Model({id: 1});
idModel.id // this will be 1
idModel.cid // this will be something like c2

// extend a model to have an idAttribute
var IdAttributeModel = Backbone.Model.extend({idAttribute: "_id"});
// create and instance of that model
// assign a value for an attribute with the same name as idAttribute
var idAttributeModel = new IdAttributeModel({_id: 1});
idAttributeModel.id // this will be 1
idAttributeModel.cid // this will be something like c3

要真正说明这一点:

每次调用 Backbone Model 的 set 时,它会检查要设置的属性中是否存在 idAttribute 并将该属性的值设置为新的 编号。这可以从this line of code in the Backbone.js source:中看出。

if (this.idAttribute in attrs) this.id = attrs[this.idAttribute];

如你所见the default idAttribute is 'id' .设置您自己的 idAttribute 将导致相应地设置模型 id

关于javascript - 主干.js : Is cid only used for Models,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18486667/

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