Twitter Typeahead/Bloodhound 来自 Ajax-Source 的建议:如何管理多个值?

Twitter Typeahead/Bloodhound Suggestions from Ajax-Source: how manage multiple values?

我正在使用 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;
}
}
});

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

{
"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()
});

但我对此感到困惑:我如何才能在建议字段中显示标签标题,但同时获得 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);
   }
);