如何用不同的值更新`sorting` oder?

时间:2017-10-16 12:57:06

标签: ember.js

我有2种类型的排序值。点击我应该更新我的排序顺序,并要求更新HTML。但目前我没有得到任何更新。

Live Demo for update in Twiddle

一个是数字方案,另一个是按日期(" 07/07 / 2017")。

这是我的尝试: //完全不起作用!!

   sortByDateOfPurchase: Ember.computed(function(){
            return privateArray.sort(function(a,b){
                  console.log( b['date_of_purchase'] );
                  return  parseInt(b['date_of_purchase']) - parseInt(a['date_of_purchase']);//07/07/2017

            })
      }),

//works but not constant
      sortByAmountSpent:Ember.computed(function(){
            return privateArray.sort(function(a,b){
                  return  parseInt(b['amount-spent']) - parseInt(a['amount-spent']);
            })
      }),

      sortTheCards(title){
//changing the sorted array but not working
            if(title=='amountSpent'){
//setting for date value
                  this.set('sortedCards', this.get('sortByAmountSpent') );
                  return;
            }

            //setting for number value
            this.set('sortedCards', this.get('sortByDateOfPurchase') );


      },

    selectedDetails : [],
    transactionService: Ember.inject.service(),

      filterValue:Ember.observer('filterBy', function(){

            var sortBy = this.get('filterBy');
            this.sortTheCards( sortBy );

      }),

      init() {
            this._super(...arguments);
            this.set('selectedDetails', this.get('transactionService.selectedTransactions'));

            var sortBy = this.get('filterBy');
            var nestedCards = this.get('nestedCards');

            this.sortTheCards( sortBy );


      },

1 个答案:

答案 0 :(得分:1)

以下是我用于排序的示例。希望这会有所帮助。

export default Ember.Component.extend({
  reverseSort: true, // default sort in ascending order
  sortedData: Ember.computed.sort('totalResults', 'sortDefinition'),
  sortBy: 'date', // default sort by date
  sortDefinition: Ember.computed('sortBy', 'reverseSort', function() {
      let sortOrder = this.get('reverseSort') ? 'desc' : 'asc';
      return [`${this.get('sortBy')}:${sortOrder}`];
  }),
})

此处reverseSort用于按ascdesc对其进行排序。 sortBy是您要用于排序的对象的attr。

以下是您可以查看的类似文章 ember computed sort