在对象数组中搜索的结果

时间:2017-05-04 11:14:30

标签: javascript fuse.js

我使用fuse.js搜索http://fusejs.io/#searching-in-arrays-of-objects

等对象数组

返回匹配标记的整个项目。 我如何知道哪些标签匹配?

1 个答案:

答案 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);