当typeahead的值已经异步时,Typeahead跳过异步请求

时间:2019-05-03 15:52:09

标签: asynchronous typeahead.js bloodhound

当我更改typeahead的值并且已经同步时,请求将不发送,并从旧响应中加载。

$('#MyTypeahead').typeahead('val', 'something');// Send async request
$('#MyTypeahead').typeahead('val', 'something else');// Send async request
$('#MyTypeahead').typeahead('val', 'something');// loads from the first one

由于某些原因,每次每次输入值更改时我都需要异步

1 个答案:

答案 0 :(得分:0)

未记录,每次搜索我都必须清除远程缓存,
解决方案只是禁用缓存

remote : { cache:false ...}