我使用fuse.js搜索http://fusejs.io/#searching-in-arrays-of-objects
等对象数组返回匹配标记的整个项目。 我如何知道哪些标签匹配?
答案 0 :(得分:0)
设置选项时,请将详细设置为 true 。这会将匹配的密钥与匹配的密钥记录到控制台。
const options = {
verbose: true,
shouldSort: true,
threshold: 0.6,
location: 0,
distance: 100,
maxPatternLength: 32,
minMatchCharLength: 1,
keys: [
"title",
"author.firstName"
]
};
const fuse = new Fuse(list, options);