【发布时间】:2017-03-28 10:07:12
【问题描述】:
我正在尝试使用 bloodhound 和 typeahead 创建自动完成功能。数据正在正确返回,但在选项中显示为 undefined
我的代码是:
HTML:
<form class="typeahead" role="search">
<div class="form-group">
<input type="search" name="q" class="form-control search-input" placeholder="Search" autocomplete="off">
</div>
</form>
Javascript:
var engine = new Bloodhound({
remote: {
url: '{{ route('search') }}?query=%QUERY',
wildcard: '%QUERY'
},
datumTokenizer: Bloodhound.tokenizers.whitespace('name'),
queryTokenizer: Bloodhound.tokenizers.whitespace
});
$(".search-input").typeahead({
hint: true,
highlight: true,
minLength: 1
}, {
source: engine.ttAdapter(),
// This will be appended to "tt-dataset-" to form the class name of the suggestion menu.
name: 'profileList',
// the key from the array we want to display (name,slug...)
templates: {
empty: [
'<div class="list-group search-results-dropdown"><div class="list-group-item">Nothing found.</div></div>'
],
header: [
'<div class="list-group search-results-dropdown">'
],
suggestion: function (data) {
var profile = [];
profile.push(data);
console.log(profile);
return '<a href="' + data.slug + '" class="list-group-item">' + data.name + '</a>'
}
}
});
当我console.log(data) 时,我得到 2 个如下所示的结果:
Hello Molly
hello-molly-436057803095647
但值显示为undefined。后端返回的数据如下:
{"name":"Hello Molly","slug":"hello-molly-436057803095647"}
我想像这样显示name 和slug:return '<a href="' + data.slug + '" class="list-group-item">' + data.name + '</a>' 作为建议。我该怎么做?
【问题讨论】:
标签: javascript json typeahead.js twitter-typeahead bloodhound