在自动填充的文档中,it states:
点击率
要根据Algolia的hits数组构建源代码,只需使用:
{ source: autocomplete.sources.hits(indexObj, { hitsPerPage: 2 }), templates: { suggestion: function(suggestion, answer) { // FIXME } } }
但是,我不确定idexObj
应该是什么。我有一个带有三个索引的instantsearch实例,但是传递任一索引都会出现以下错误:
autocomplete.min.js?_=1494237458641:7 Uncaught TypeError: Cannot read property '_ua' of undefined
虽然通过indexObj
会导致:
Uncaught ReferenceError: indexObj is not defined
我需要限制显示的结果数量,我想通过源应该这样做,但我无法弄清楚如何传递它。