示例代码:
//定义索引 var idx = lunr(Function () { this.fIEld('title', { Boost: 10 }) this.field('body') }) //添加索引 var doc = { "title": "Twelfth-Night", "body": "If music be the food of love, play on: Give me excess of it…", "author": "William ShakeSPEare", "id": 1 } idx.add(doc) //搜索 idx.search("love") //返回结果 [{ "ref": 1, "score": 0.87533 }]
发布于 2017-12-04 00:26:07 | 191 次阅读