0

我刚刚开始学习 Backbone.js。如何为以下用例创建主干模型

  • 状态:[0-n]
    • 姓名
    • 县:[0-n]
      • 姓名
      • 城市:[0-n]
        • 姓名:
        • 公园[0-n]
          • 姓名:

任何帮助将不胜感激。这是我到目前为止所尝试的

window.Team = Backbone.Model.extend({
        initialize: function(){
          this.id = this.get('id');
        }
      });
      window.Teams = Backbone.Collection.extend({model:Team});

      window.Ward = Backbone.Model.extend({
        initialize: function(){
          this.name = this.get('name');
          this.code = this.get('code');
          this.teams = new Teams(this.get('teams'));
        }
      });

      window.Wards = Backbone.Collection.extend({model:Ward});

      window.LGA = Backbone.Model.extend({
        initialize: function(){
          this.name = this.get('name');
          this.wards = new Wards(this.get('wards'));
        }
      });

      window.LGAs = Backbone.Collection.extend({model:LGA});

      window.State = Backbone.Model.extend({
        initialize: function(){
          this.name = this.get('name');
          this.lgas = new Wards(this.get('lgas'));
        }
      });

      window.States = Backbone.Collection.extend({model:State,

        initialize: function(){
          _.bindAll(this, 'fetch_success');
          this.bind('change', this.fetch_success);
        },

        url: function(){
            return "data.json"
        },

        fetch_success:function(){
            var data = Backbone.Syphon.serialize(someViewWithAForm);
            var model = new Backbone.Model(data);
        }
      });

谢谢

4

1 回答 1

2

根据您构建/获取模型的方式,您可能会感兴趣Backbone-relational,它可以让您定义模型之间的关系。

从文档:

Person = Backbone.RelationalModel.extend({
    relations: [
        {
            type: 'HasMany',
            key: 'jobs',
            relatedModel: 'Job',
            reverseRelation: {
                key: 'person'
            }
        }
    ]
});
于 2012-06-20T16:40:30.163 回答