1

我觉得我必须遗漏一些明显的东西,但是如何从父对象中的 hasMany 定义的子对象中访问父对象?

我们有一个分层数据模型。

  • 应用程序有很多类别
  • 类别有很多层
  • 我们所有的关系都是嵌入的。

我们从一个大的旧 JSON 对象侧加载整个 shebang,例如:

var json_data = {
    "app_id": 100,
    "name": "My Cool App"
    "categories": [{
        "cat_id": 100,
        "name": "First Category",
        "layers": [{
            "layer_id": 100
            "name": "First Layer"
        },{
            "layer_id": 200
            "name": "Second Layer"
        }]
    },{  
        "cat_id": 200,
        "name": "Second Category",
        "layers": [{
            "layer_id": 300
            "name": "Third Layer"
        },{
            "layer_id": 400
            "name": "Fourth Layer"
        }]
    }]
}

模型看起来(大致)像:

App.AppConfig = Ember.Model.extend({
  app_id: attr(),
  appName: attr(),
  categories: hasMany('App.Category', {key: 'categories', embedded: true})
});


App.Category = Ember.Model.extend({
  cat_id: attr(),
  name: attr(),
  layers: hasMany('App.Layer', {key: 'layers', embedded: true})
});


App.Layer = Ember.Model.extend({
  layer_id: attr(),
  name: attr(),

  init: function() {
    this._super();
    this.on('didLoad', this, this.setDefaults);
  },

  setDefaults: function() {
    //This is the line I can't figure out
    var my_parent_category = this.get('parent');
  }  
});

好的,那么我们:

var appConf = App.AppConfig.create();
appConf.load(1, json_data);

因此,考虑到所有这些,从 App.Layer 实例的方法中,我该如何做一些事情,比如 this.get('parent')获取层所属的 App.Category 对象的句柄?

4

0 回答 0