gpt4 book ai didi

javascript - IgnoreCase backbone.js 集合?

转载 作者:行者123 更新时间:2023-11-29 18:20:56 26 4
gpt4 key购买 nike

我一直在尝试使用 collection.where 对 backbone.js 集合执行不区分大小写的搜索,我刚刚意识到集合中搜索值和模型字段值的大小写必须匹配。我找到了 this 例如,但我应该在哪里覆盖行为或者是否有替代方法?谢谢

collection.findWhere({ 'Fname': val })

collection.where({ 'Fname': val })

//仅在字符串大小写匹配时有效。

最佳答案

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();
});
}

});

关于javascript - IgnoreCase backbone.js 集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18871320/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com