我所擁有的用戶(六是精確的)與「名字」,「姓氏」屬性的集合在列表中。做一個fetch,下面的比較器按'firstname'對它們進行排序,並且它工作正常。骨幹/下劃線sortBy不分類收集
comparator : function (user) {
return user.get("firstname").toLowerCase();
}
但如果我嘗試收集後進行排序,通過不同的值,即「姓」,這是行不通的。訂單保持不變。
this.collection.sortBy(function(user) {
return user.get("lastname").toLowerCase();
});
我在做什麼錯?
更新
所以從sortBy返回的數據進行排序,但因爲我的看法是鏈接到集合,並不能幫助我真的。如果我重新收集並添加排序的數組回到集合這是比較它的工作並對其排序,返回到「姓名」的順序。
var sorted = this.collection.sortBy(function(user) {
return user.get("lastname").toLowerCase();
});
由於德里克。並感謝您的網站。這是一個偉大的開發人員資源。 – screenm0nkey 2012-03-21 13:35:44
是不是比較函數應該返回整數? – 2012-03-22 08:41:42
請注意,這將返回一個列表而不是一個集合。不是一個很大的交易,但值得一提。 – Chris 2013-06-15 08:10:33