0

我有一个 ember 模型类别:

export default DS.Model.extend({
  name: DS.attr('string'),
  img: DS.attr('string'),
  url: DS.attr('string'),
  cnt: DS.attr('number'),

//  parent_id: DS.belongsTo('category', {
//    inverse: 'children',
//    async: true
//  }),
  parent_id: DS.attr('string'),

//  children: DS.hasMany('category', {
//    inverse: 'parent_id',
//    async: true
//  }),
  children: DS.attr(),

  isSelected: false,
  isExpanded: false,

  hasChildren: function() {
    return this.get('children').get('length') > 0;
  }.property('children').cacheable(),

  isLeaf: function() {
    return this.get('children').get('length') == 0;
  }.property('children').cacheable()
});

在我的索引路线中,我有:

export default Ember.Route.extend({
  model: function() {
    var store = this.store;
    return Ember.ArrayProxy.create({
      categories: store.find('category'),
      menuTopCategories: store.find('category', { parent_id: 1 })
    });
  }
});

我正在使用 RESTAdapter,因此 store.find 将向服务器发送两个请求:categoriescategories?parent_id=1. 我只想有第一个请求,然后过滤类别。我试过 store.all了——因为我看到它重用了已经获取的数据,但我无法应用过滤器。

4

1 回答 1

0

我重写了 menuTopCategories 并且没有看到新的请求:

menuTopCategories: store.filter('category', function(category) {
   return category.get('parent_id') === "1";
})

我现在的问题是在不硬编码 parent_id 的情况下获取根类别(第一个)。

于 2014-12-16T12:02:16.730 回答