📜  模糊搜索 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:40.393000             🧑  作者: Mango

代码示例2
const options = {
  includeScore: true,
  // Search in `author` and in `tags` array
  keys: ['author', 'tags']
}

const fuse = new Fuse(list, options)

const result = fuse.search('tion')