我一直在尝试使用collection.where对backbone.js集合执行不区分大小写的搜索,我只是意识到集合中搜索值和模型字段值的情况必须匹配。我找到了this 示例,但我在哪里覆盖行为或有替代方案?感谢
collection.findWhere({ 'Fname': val })
和
collection.where({ 'Fname': val })
//仅在字符串大小写匹配时才起作用。
答案 0 :(得分:3)
var myCollection = Backbone.Collection.extend({
// define your own case insensitive where implemented using .filter
iwhere : function( key, val ){
return this.filter( function( item ){
return item.get( key ).toLowerCase() === val.toLowerCase();
});
}
});
答案 1 :(得分:1)
我选择覆盖我的集合中的where和findWhere以允许caseInsensitive选项:
//case-insensitive where
where: function(attrs, first, options){
options = options || {};
if (_.isEmpty(attrs)) return first ? void 0 : [];
return this[first ? 'find' : 'filter'](function(model) {
for (var key in attrs) {
if (options.caseInsensitive) {
if (attrs[key].toLowerCase() !== model.get(key).toLowerCase()) return false;
} else {
if (attrs[key] !== model.get(key)) return false;
}
}
return true;
});
},
findWhere: function(attrs, options) {
return this.where(attrs, true, options);
}
并通过以下方式调用:
collection.findWhere({username: "AwEsOmE"}, {caseInsensitive: true});
它不完全漂亮,但原始实现也不是。 O_O
将此作为拉取请求打开也很棒,但是将where函数中的“first”变量重构为选项中的键。这是我要做的事情清单。