1

在使用 Ember-Model 对我的 ArrayController 进行排序之前,使用 sortProperties 和 sortAscending 按预期工作。最近我切换到 Ember-Model 并且排序功能不再起作用。

到目前为止的代码:

App.Movie = Ember.Model.extend({
  rating: Ember.attr(),
  title: Ember.attr(),
  watched: Ember.attr(),
  year: Ember.attr(),
});

App.MoviesIndexController = Ember.ArrayController.extend({
  sortProperties: null,
  sortAscending: null,

  actions: {
    sortByAttribute: function (attr) {
      if (this.get('sortProperties')) {
        if (this.get('sortProperties')[0] === attr) {
          this.toggleProperty('sortAscending');
        } else {
          this.set('sortProperties', [attr]);
        }
      } else {
        this.set('sortProperties', [attr]);
        this.set('sortAscending', true);
      }
    }
  }
});

<table>
  <thead>
    <tr>
      <th {{action "sortByAttribute" "year"}}>Year </th>
    </tr>
  </thead>
  ...
</table>

任何的想法?

谢谢

4

1 回答 1

1

看起来对我有用,这是一个 jsbin 示例

http://emberjs.jsbin.com/eKibapI/8/edit

于 2013-11-23T15:17:37.750 回答