标签: react-bootstrap-typeahead
我想完全禁用分页并显示同步呼叫的所有结果,
如果将paginate设置为false,则在滚动时最多可以看到99,除此之外,我只能进行搜索。 有没有办法在向下滚动时看到超出默认索引的结果?
paginate
false
答案 0 :(得分:0)
有一个简单的方法可以实现。
<Typeahead {...this.props} options= {objects} maxResults = {objects.length} paginate = false />
摘自官方文件:
paginate:如果结果数超过maxResults,则使用户能够显示其他结果。
详细文档:react-bootstrap-typeahead-props