我试图在我的应用程序中实现 fuse.js,其中我有一个没有任何键的字符串数组。
['Kelly', 'Creed', 'Stanley', 'Oscar', 'Michael', 'Jim', 'Darryl', 'Phyllis', 'Pam', 'Dwight', 'Angela', 'Andy', 'William', 'Ryan', 'Toby', 'Bob']
当我尝试配置 fuse.js 时,由于未指定密钥,我没有得到任何结果。
var options = {
shouldSort: true,
threshold: 0.6,
location: 0,
distance: 100,
maxPatternLength: 32,
minMatchCharLength: 1,
keys: [
"title",
"author.firstName"
]
};
var fuse = new Fuse(list, options); // "list" is the item array
var result = fuse.search("");
是否可以对普通数组执行模糊搜索,还是需要将所有内容都转换为对象?