TypeAhead.js 和 Bloodhound 显示奇数个结果
TypeAhead.js and Bloodhound showing an odd number of results
我的前端有一个 TypeAhead/Bloodhound 实现,它从 Play/Scala-server 中获取 JSON 数据。 Typeahead 版本是 0.11.1。实现如下:
HTML:
<div id="typeahead" class="col-md-8">
<input class="typeahead form-control" type="text" placeholder="Select the user">
</div>
JavaScript:
var engine = new Bloodhound({
datumTokenizer: function (datum) {
var fullName = fullName(datum);
return Bloodhound.tokenizers.whitespace(fullName);
},
queryTokenizer: Bloodhound.tokenizers.whitespace,
identify: function(obj) { return obj.id; },
remote: {
url: routes.controllers.Users.index("").url,
cache: false,
replace: function (url, query) {
if (!isEmpty(query)) {
url += encodeURIComponent(query);
}
return url;
},
filter: function (data) {
console.log(data);
return $.map(data, function (user) {
return {
id: user.id,
fullName: viewModel.fullName(user)
};
});
}
}
});
// instantiate the typeahead UI
$('#typeahead .typeahead')
.typeahead({
hint: true,
highlight: true,
minLength: 1,
},
{
name: 'engine',
displayKey: 'fullName',
source: engine
})
function fullName(data) {
if (data === undefined) return "";
else {
var fName = data.firstName === undefined ? "" : data.firstName;
var lName = data.lastName === undefined ? "" : data.lastName;
return fName + ' ' + lName;
}
};
JSON-服务器给出的响应:
[{"firstName":"Test","lastName":"User", "id":1}, ... ]
服务器对结果进行分页以使其最多提供 5 个结果,这也应该是 Typeahead/Bloodhound 的默认限制。
问题是当服务器 returns 5 个结果时,Typeahead 在叠加层中显示 0 个结果。如果服务器给出 4 个结果,则 TypeAhead 在叠加层中显示 1 个。如果服务器给出 3 个结果,则 TypeAhead 显示 2 个结果。对于 2 和 1 结果,它显示叠加层中正确的元素数量。如果我删除页面长度和服务器 returns 超过 10 个结果,则 TypeAhead 显示 5 个结果(限制)。 console.log 过滤器内部显示了正确数量的数据结果,因此它们至少会转到 Bloodhound。
这段代码可能有什么问题?此 TypeAhead 字段是此页面中唯一存在的 TypeAhead 字段。我检查了 DOM,TypeAhead 生成了错误数量的结果集字段,因此 CSS 不是问题(也试图删除所有自定义 CSS)。
感谢任何回复:)
代码中的 typeahead 存在问题:
https://github.com/twitter/typeahead.js/issues/1218
您可以按照问题页面中的说明自行更改 JS 中的代码。
尝试用 engine.initialize()
初始化 engine
;在 filter
返回 suggestion
对象,它应该在 templates
-> suggestion
可用;使用 source:engine.ttAdapter()
在 source
处初始化 engine
;在 suggestion
处以 String
形式返回元素,以填充 "suggestion" 下拉菜单。参见 Typeahead - examples - Custom Templates
var data = [{
"firstName": "Test",
"lastName": "User",
"id": 1
}, {
"firstName": "Test2",
"lastName": "User2",
"id": 2
}, {
"firstName": "Test3",
"lastName": "User3",
"id": 3
}, {
"firstName": "Test4",
"lastName": "User4",
"id": 4
}, {
"firstName": "Test5",
"lastName": "User5",
"id": 5
}];
var engine = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace("value"),
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: $.map(data, function(val, key) {
// return `suggestion` object for `templates` `suggestion`
return {value:val.firstName, suggestion:val}
})
});
// initialize `engine`
engine.initialize();
// instantiate the typeahead UI
$("#typeahead .typeahead")
.typeahead({
hint: true,
highlight: true,
minLength: 1,
}, {
name: "engine",
displayKey: "firstName",
templates: {
suggestion: function (data) {
// `suggestion` object passed at `engine`
console.log(data.suggestion);
// return suggestion element to display
var _suggestion = "<div>"
+ data.suggestion.firstName
+ " "
+ data.suggestion.lastName + "</div>";
return _suggestion
}
},
source: engine.ttAdapter()
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.js"></script>
<div id="typeahead" class="col-md-8">
<input class="typeahead form-control" type="text" placeholder="Select the user">
</div>
如果(像我一样)你不想进入预输入源,(例如因为你想使用最小版本)你也可以将限制设置得非常高。然后您必须自己限制要放入列表中的项目数。
$('#typeahead .typeahead')
.typeahead({
hint: true,
highlight: true,
minLength: 1,
},
{
name: 'engine',
displayKey: 'fullName',
source: engine,
limit: 1000
})
推特应该 abandoned the project. Try the maintained fork。它已解决问题。
对于发现此问题的任何人,请使用代码的维护版本。原作很垃圾
我的前端有一个 TypeAhead/Bloodhound 实现,它从 Play/Scala-server 中获取 JSON 数据。 Typeahead 版本是 0.11.1。实现如下:
HTML:
<div id="typeahead" class="col-md-8">
<input class="typeahead form-control" type="text" placeholder="Select the user">
</div>
JavaScript:
var engine = new Bloodhound({
datumTokenizer: function (datum) {
var fullName = fullName(datum);
return Bloodhound.tokenizers.whitespace(fullName);
},
queryTokenizer: Bloodhound.tokenizers.whitespace,
identify: function(obj) { return obj.id; },
remote: {
url: routes.controllers.Users.index("").url,
cache: false,
replace: function (url, query) {
if (!isEmpty(query)) {
url += encodeURIComponent(query);
}
return url;
},
filter: function (data) {
console.log(data);
return $.map(data, function (user) {
return {
id: user.id,
fullName: viewModel.fullName(user)
};
});
}
}
});
// instantiate the typeahead UI
$('#typeahead .typeahead')
.typeahead({
hint: true,
highlight: true,
minLength: 1,
},
{
name: 'engine',
displayKey: 'fullName',
source: engine
})
function fullName(data) {
if (data === undefined) return "";
else {
var fName = data.firstName === undefined ? "" : data.firstName;
var lName = data.lastName === undefined ? "" : data.lastName;
return fName + ' ' + lName;
}
};
JSON-服务器给出的响应:
[{"firstName":"Test","lastName":"User", "id":1}, ... ]
服务器对结果进行分页以使其最多提供 5 个结果,这也应该是 Typeahead/Bloodhound 的默认限制。
问题是当服务器 returns 5 个结果时,Typeahead 在叠加层中显示 0 个结果。如果服务器给出 4 个结果,则 TypeAhead 在叠加层中显示 1 个。如果服务器给出 3 个结果,则 TypeAhead 显示 2 个结果。对于 2 和 1 结果,它显示叠加层中正确的元素数量。如果我删除页面长度和服务器 returns 超过 10 个结果,则 TypeAhead 显示 5 个结果(限制)。 console.log 过滤器内部显示了正确数量的数据结果,因此它们至少会转到 Bloodhound。
这段代码可能有什么问题?此 TypeAhead 字段是此页面中唯一存在的 TypeAhead 字段。我检查了 DOM,TypeAhead 生成了错误数量的结果集字段,因此 CSS 不是问题(也试图删除所有自定义 CSS)。
感谢任何回复:)
代码中的 typeahead 存在问题:
https://github.com/twitter/typeahead.js/issues/1218
您可以按照问题页面中的说明自行更改 JS 中的代码。
尝试用 engine.initialize()
初始化 engine
;在 filter
返回 suggestion
对象,它应该在 templates
-> suggestion
可用;使用 source:engine.ttAdapter()
在 source
处初始化 engine
;在 suggestion
处以 String
形式返回元素,以填充 "suggestion" 下拉菜单。参见 Typeahead - examples - Custom Templates
var data = [{
"firstName": "Test",
"lastName": "User",
"id": 1
}, {
"firstName": "Test2",
"lastName": "User2",
"id": 2
}, {
"firstName": "Test3",
"lastName": "User3",
"id": 3
}, {
"firstName": "Test4",
"lastName": "User4",
"id": 4
}, {
"firstName": "Test5",
"lastName": "User5",
"id": 5
}];
var engine = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace("value"),
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: $.map(data, function(val, key) {
// return `suggestion` object for `templates` `suggestion`
return {value:val.firstName, suggestion:val}
})
});
// initialize `engine`
engine.initialize();
// instantiate the typeahead UI
$("#typeahead .typeahead")
.typeahead({
hint: true,
highlight: true,
minLength: 1,
}, {
name: "engine",
displayKey: "firstName",
templates: {
suggestion: function (data) {
// `suggestion` object passed at `engine`
console.log(data.suggestion);
// return suggestion element to display
var _suggestion = "<div>"
+ data.suggestion.firstName
+ " "
+ data.suggestion.lastName + "</div>";
return _suggestion
}
},
source: engine.ttAdapter()
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.js"></script>
<div id="typeahead" class="col-md-8">
<input class="typeahead form-control" type="text" placeholder="Select the user">
</div>
如果(像我一样)你不想进入预输入源,(例如因为你想使用最小版本)你也可以将限制设置得非常高。然后您必须自己限制要放入列表中的项目数。
$('#typeahead .typeahead')
.typeahead({
hint: true,
highlight: true,
minLength: 1,
},
{
name: 'engine',
displayKey: 'fullName',
source: engine,
limit: 1000
})
推特应该 abandoned the project. Try the maintained fork。它已解决问题。
对于发现此问题的任何人,请使用代码的维护版本。原作很垃圾