gpt4 book ai didi

javascript - 来自 Ajax 源的 Twitter Typeahead/Bloodhound 建议 : how manage multiple values?

转载 作者:行者123 更新时间:2023-12-03 07:11:39 25 4
gpt4 key购买 nike

我使用 typeahead/bloodhound 来获取来自 ajax 源的建议:

var protags = new Bloodhound({  
datumTokenizer: function(protags) {
return Bloodhound.tokenizers.whitespace(protags.value);
},
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
url: '/ajax/getinfo.php?q=%QUERY',
wildcard: '%QUERY',
filter: function(response) {
return response.protags;
}
}
});

getinfo.php 的 JSON 结果如下所示:

{
"protags": [
{"tag": {
"tagid": "1",
"tagtitle": "titleone"}
},
{"tag": {
"tagid": "2",
"tagtitle": "titletwo"}
},
{"tag": {
"tagid": "3",
"tagtitle": "titlethree"}
}]}

我能够检索我想要的所有信息(tagtitle 和 tagid)并使用以下方式显示它:

$('.typeahead').typeahead(
{ hint: true,
highlight: true,
minLength: 1
},
{
name: 'protags',
displayKey: function(protags) {
return protags.tag.tagtitle+'-'+protags.tag.tagid;
},
source: protags.ttAdapter()
});

但我对此感到困惑:如何在建议字段中仅显示 tagtitle,但同时获取 protags.tag.tagid 以进行更多服务器端操作?

最佳答案

使用 :select 事件 (v 0.11.x) 或 :selected 事件 (v.0.10.x)。阅读 Bloodhound/typeahead 文档,因为他们在 0.10.x 和 0.11.x 之间做了很多更改

我使用的是 0.10.5,在我的例子中它看起来像这样:

编辑:查看您的 json,我不确定模板和 :selected 函数中包含哪些数据。您可能需要使用 data.protags.tag 等

$(selector).typeahead(
// options, key, source etc

templates: {
suggestion: function (data) {
return '<div class="tt-name">' + data.tag.tagtitle + '</div>';
}
}
// end of options
)
.on('typeahead:selected',
function(event, data) {
// you should be able to get your data here, if I'm correct like so:
console.log(data.tag.tagid);
}
);

关于javascript - 来自 Ajax 源的 Twitter Typeahead/Bloodhound 建议 : how manage multiple values?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36596951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com