「年齢で並べ替え」をクリックすると、サーバーからデータをフェッチして年齢の値で並べ替える関数を呼び出しています。フェッチを実行した後にこれを実行しますが、結果がなく、すべてが返されます。
誰かがこれを実装する正しい方法を与えますか?
私のコード:
ビュークラスのこのコード、
sortByAge:function(){
this.collection.fetch() //fetching new collection
.done(function(data){ // once done i am passing data
var filterType = data.sort('age') // correct way need to sort.
that.collection.reset(filterType); // refreshing the collection
})
},