1

我对 Hogan.js 和 typeahead.js 都是新手,所以这个问题可能很愚蠢。

$('.example-twitter-oss .typeahead').typeahead({                              
      name: 'twitter-oss',                                                        
      prefetch: 'repos.json',                                             
      template: [                                                                 
        '<p class="type">{{language}}</p>',                              
        '<p class="name">{{name}}</p>',                                      
        '<p class="description">{{description}}</p>'
      ].join(''),
      engine: Hogan
});

这就是我使用 Hogan.js 作为模板创建 typeahead.js 实例的方式。现在我想更改我的测试数据:'repos.json',模板还是一样的。我猜它以某种方式缓存。如何重置模板以包含新数据?

我看到 hogan 有一个 compile(); 和 render() 方法,但我不明白如何使用它。

我使用两者的最新版本。

4

1 回答 1

3

在当前版本的 typeahead.js (0.9.3) 中,数据集通过其 name 属性进行缓存,并且无法破坏缓存。因此,如果您有:

$('.example-twitter-oss .typeahead').typeahead({
  name: 'twitter-oss',                                                        
  prefetch: 'repos.json',                                             
  template: [                                                                 
    '<p class="type">{{language}}</p>',                              
    '<p class="name">{{name}}</p>',                                      
    '<p class="description">{{description}}</p>'
  engine: Hogan
});

$('.example-something-different .typeahead').typeahead({
  name: 'twitter-oss',
  prefetch: 'something_different.json'
});

.example-something-different .typeahead不会使用指定的配置,它会使用指定的配置,.example-twitter-oss .typeahead因为它们使用相同的name. 这并不直观,它将在下一个版本 v0.10 中进行更改。不过现在,您可以通过使用不同name的 s 来规避这个问题:

$('.example-twitter-oss .typeahead').typeahead({
  name: 'twitter-oss',
  prefetch: 'repos.json',
  template: [
    '<p class="type">{{language}}</p>',
    '<p class="name">{{name}}</p>', 
    '<p class="description">{{description}}</p>'
  ].join(''),
  engine: Hogan
});

$('.example-something-different .typeahead').typeahead({
  name: 'something different',
  prefetch: 'something_different.json'
});
于 2013-07-18T21:47:14.680 回答