我正在使用twitter typeahead来显示建议,它运行正常。但是当用户继续输入时,我需要获得所有显示的建议(对象)。任何帮助表示赞赏。提前谢谢。
var mCountry = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
prefetch: {
url: 'list.json',
filter: function(list) {
return $.map(list, function(country) {
return {
name: country.n,
id: country.i
};
});
}
}
});
mCountry.initialize();
$("#sugg_input").typeahead(null, {
name: 'countries',
displayKey: 'name',
source: mCountry.ttAdapter()
});