gpt4 book ai didi

javascript - 没有 Bloodhound 的预输入

转载 作者:行者123 更新时间:2023-11-27 22:53:59 24 4
gpt4 key购买 nike

我的印象是在执行远程调用时不需要使用 Bloodhound。我尝试运行此代码:

$("#iban2").typeahead({
hint: false,
minLength: 4,
highlight: true
},
{
source: function show(q, cb, cba) {
console.log(q);
var url = '@Url.HttpRouteUrl("DefaultApi", new {controller = "Iban"})' + "/" + q;
$.ajax({ url: url })
.done(function(res) {
cba(res);
})
.fail(function(err) {
alert(err);
});
},
displayKey: 'iban'
});

即使我得到了结果,从源函数中调用 async cb 仍然不起作用。关于发生的事情有什么提示吗?

谢谢。

路易斯

最佳答案

不知道为什么,但添加 limit 选项似乎可以解决问题:

$("#iban2").typeahead({
hint: false,
minLength: 4,
highlight: true
},
{
source: function show(q, cb, cba) {
console.log(q);
var url = '@Url.HttpRouteUrl("DefaultApi", new {controller = "Iban"})' + "/" + q;
$.ajax({ url: url })
.done(function(res) {
cba(res);
})
.fail(function(err) {
alert(err);
});
},
limit:10,
displayKey: 'iban'
});

关于javascript - 没有 Bloodhound 的预输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37778447/

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