当前位置:  开发笔记 > 编程语言 > 正文

使用Typeahead.js的预取显示总结果数

如何解决《使用Typeahead.js的预取显示总结果数》经验,为你挑选了0个好方法。

我正在使用Typeahead.js,其实现看起来与示例中的"多个数据集"非常相似:

var nbaTeams = new Bloodhound({
      datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'),
      queryTokenizer: Bloodhound.tokenizers.whitespace,
      prefetch: '../data/nba.json'
});

var nhlTeams = new Bloodhound({
      datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'),
      queryTokenizer: Bloodhound.tokenizers.whitespace,
      prefetch: '../data/nhl.json'
});

var footer = function (context) {
    // calculate total hits here
    return "" + count + "";
}

$('#multiple-datasets .typeahead').typeahead(null, {    
      name: 'nba-teams',
      display: 'team',
      source: nbaTeams,
      templates: {
          header: '

NBA Teams

' }, limit: 3 }, { name: 'nhl-teams', display: 'team', source: nhlTeams, templates: { header: '

NHL Teams

', footer: footer }, limit: 3 });

我正在使用最新版本的Typeahead.js(v0.11.1).我正在尝试将一个页脚模板添加到NHL团队部分的底部,该部分具有匹配结果的总数.有点像Browse all ### results.我在文档中找不到任何可以从Bloodhound中获取总命中数的地方.

我见过人们使用远程数据源来做这件事,但我的数据源很小,可以被拉入和缓存,所以我想使用预取.

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有