0

我有一个名为的模型score和一个名为scores. 但是,该模型似乎没有localStorage从父集合继承属性(或就此而言,任何属性)。我在这里错过了什么吗?

使用 RequireJS 运行 Backbone。

模型/score.js

define([
    'underscore',
    'backbone',
    'localstorage'
], function(_, Backbone, Store){
    var ScoreModel = Backbone.Model.extend({
        defaults: {
            board_id: null,
            ns_pair: null,
            ew_pair: null,
            ns_score: null
        },
        validate: function(attrs, options){
            if( isNaN(attrs.board_id) || attrs.board_id < 1 ){
                return 'Invalid Board ID!';
            }
        },
        localStorage: new Store("ScoreCollection")
    });
    return ScoreModel;
});

集合/scores.js

define([
    'underscore',
    'backbone',
    'models/score',
    'localstorage'
], function(_, Backbone, ScoreModel, Store){
    var ScoreCollection = Backbone.Collection.extend({
        model: ScoreModel,
        localStorage: new Store("ScoreCollection")
    });
    return ScoreCollection;
});

main.js

require.config({
  paths: {
    // Major libraries
    jquery: 'libs/jquery/jquery.min',
    underscore: 'libs/underscore/underscore.min',
    backbone: 'libs/backbone/backbone.min',

    // Require.js plugins
    text: 'libs/require/text',

    // Backbone.js plugins
    localstorage: 'libs/backbone/localstorage',

    // Just a short cut so we can put our html outside the js dir
    // When you have HTML/CSS designers this aids in keeping them out of the js directory
    templates: '../templates'
  }
});

// Let's kick off the application

require([
  'app'
], function(App){
  App.initialize();
});
4

1 回答 1

0

骨干模型不继承骨干集合。它们只是您使用自己的属性和方法“扩展”的基本 Backbone.Model 的扩展。收藏,同样的交易。您可以指定集合的​​模型基于您定义的特定模型,以便在将集合添加到其中时,它使用模型构造函数为该集合中的每个模型创建实例,但那里没有直接的继承关系。如果适合您的需要,您可以在恰好是集合实例的模型上定义一个属性。

于 2013-03-09T06:38:21.777 回答