我想在 Node 应用程序中创建一个Js Search索引,然后在客户端 JavaScript 应用程序中使用这个索引。
我试过这个:
// docs is an array of objects, each with a name, title and description
var search = new jsSearch.Search('name');
search.addIndex('title');
search.addIndex('description');
search.addDocuments(docs);
...还有这个:
var search = new jsSearch.Search('name');
search.searchIndex = new jsSearch.TfIdfSearchIndex('name');
search.addIndex('title');
search.addIndex('description');
search.addDocuments(docs);
...但是那时我如何访问索引?