0
我正在使用Backbone.pageable爲我的集合分頁。主幹比較器:按字母排序並按字符排序
var myarray = Backbone.PageableCollection.extend({
url: '/json/file.json',
mode: 'client',
comparator: function (model, charater) {
//something here??
return model;
},
state:{
sortKey: "name"
order: "-1"
})
我想寫一個比較函數,它需要一個字符,並且只能得到那些以字母開頭的名字。