gpt4 book ai didi

javascript - typeahead js 不显示结果

转载 作者:行者123 更新时间:2023-11-29 20:57:35 24 4
gpt4 key购买 nike

我想使用 typeahead 远程检索邮政编码,它必须是 post,而不是 get。该调用在控制台中返回以下 json:

{suggestions: "L-6956 | IM GRUND | KEEN-SUR-DOHEEM"}
{suggestions: "L-6956 | OP DER MOUCK | KEEN-SUR-DOHEEM"}

但结果未显示在输入字段下方,以便选择其中一个结果。这是我的代码:

$('#txtPostalCode').typeahead(
null,
{
name: 'txtPostalCode',
displayKey: 'suggestions',
minLength: 3,
source: function (query, syncResults) {
$.post('/hotbed/sggl/getpipedaddresses', {searchItem: query}, function (data) {
syncResults($.map(data, function (item) {
console.log(item.suggestions);
return item;
}));
}, 'json');

}
});

最佳答案

根据 typeahead API,服务器响应应标记为 Async 并且您的响应应使用该 asyncCB 获取,

$('#txtPostalCode').typeahead({
null
},
{
name: 'txtPostalCode',
displayKey: 'suggestions',
minLength: 3,
async: true,
source: function (query, processSync, processAsync) {
processSync(['This suggestion appears immediately', 'This one too']);
return $.ajax({
url: "/hotbed/sggl/getpipedaddresses",
type: 'POST',
data: {searchItem: query},
dataType: 'json',
success: function (json) {
// in this example, json is simply an array of strings
return processAsync(json);
}
});
}
});

由于这个问题有公开赏金,我不能将其标记为重复,但您可能会在以下问题中找到更多详细信息,

Duplicate of this question

关于javascript - typeahead js 不显示结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48501988/

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