如何从骨干模型属性中创建集合?

时间:2013-08-05 09:16:10

标签: javascript backbone.js web backbone-model

在我们的骨干应用程序中,我们有一个配置文件模型。它有一个属性“完整性”,它是一个数组,包含用户尚未添加到其配置文件中的字段(如个人资料图片,全名等)。

为了在这个数组上轻松做listenTo,我正在尝试创建一个集合来替换数组。我的想法是将数组保留在配置文件模型中,并创建一个progfileProgress模型,该模型从配置文件中的数组中获取数据。然后将其添加到集合“完整性”。

如何将第一个模型中的数据转换到第二个集合中?

1 个答案:

答案 0 :(得分:0)

我会做这样的事情(假设你有下划线/ lodash,因为你使用的是Backbone):

// Here I build a data structure from the completeness array.
// It will be the model of the new Collection.
var missingFields = _.map(profileModel.get('completeness'), function(el) {
    return {missing: el};
});

// The new collection that you can set on your model and do listenTo
profileModel.set('profileProgress', new Backbone.Collection(missingFields));