作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用预取,但我不能让它工作!
这是我的代码:
function initAutocompletion() {
$("input[data-autocomplete-prefetch-url]").each(function () {
var $this = $(this);
var urlPrefetch = $this.data("autocomplete-prefetch-url");
var prefetch;
pref = {
url: urlPrefetch,
filter: filter
};
var bloodHound = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
prefetch: pref
});
bloodHound.initialize();
$this
.typeahead('destroy')
.typeahead({
hint: true,
highlight: true,
minLength: 1
},
{
displayKey: 'value',
source: bloodHound.ttAdapter()
});
});
}
function filter(list) {
return $.map(list, function (v) { return { value: v.toString() }; });
}
var bloodHound = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
remote: pref
});
最佳答案
令人惊讶的是,今天早上它起作用了!
所以它驱使我认为它是关于缓存......它是!
在初始化 Bloodhound 之前添加 clearPrefetchCache() 可以解决问题。
bloodHound.clearPrefetchCache();
bloodHound.initialize();
关于提前打字,猎犬 : remote works but not prefetch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23569375/
我想使用预取,但我不能让它工作! 这是我的代码: function initAutocompletion() { $("input[data-autocomplete-prefetch-url
我不清楚如何使用 Bloodhound 中的 dupDetector 参数删除重复项。 我正在使用 0.11.1 版 从具有如下记录的数据库中提取数据集: building_name room d
我正在使用带有远程 API 的 Bloodhound,我需要转换从远程 API 返回的结果。 API URL 是 https://www.googleapis.com/books/v1/volumes
我是一名优秀的程序员,十分优秀!