提交 b1b03ddd 编写于 作者: H hjdhnx

大小写

上级 340c42fe
......@@ -2,7 +2,7 @@ function searchContains(key,result){
let keys = key.split(' ').filter(it=>it.trim());
let search_ok = true;
for(let i=0;i<keys.length;i++){
if(!result.includes(keys[i])){
if(!result.toLowerCase().includes(keys[i].toLowerCase())){
search_ok = false;
break;
}
......@@ -13,4 +13,5 @@ function searchContains(key,result){
searchContains('奥斯卡 2021','2021奥斯卡最佳男主'); // true
searchContains('奥斯卡 2021','2021奥斯卡最佳男主'); // true
searchContains('奥斯卡2021','2021奥斯卡最佳男主'); // false
searchContains('奥斯卡','2021奥斯卡最佳男主'); // true
\ No newline at end of file
searchContains('奥斯卡','2021奥斯卡最佳男主'); // true
searchContains('nhk 沸腾','NHK纪录片沸腾都市'); // true
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册