我正在尝试在没有来自用户输入的建议时显示results not found
消息。 typeahead.js 在向文本字段输入时显示输入建议。如果没有找到建议,那么如何显示results not found
消息?..版本是 typeahead.js 0.11.1
答案 0 :(得分:6)
您可以使用'
参数检查是否没有结果:
我已经对上面的代码进行了一些编辑,这样可以帮助其他人搜索相同的内容。
empty
答案 1 :(得分:0)
我有同样的问题。但是我使用ajax作为我的源而不是适配器。
如果建议长度为0,你可以尝试添加popover。
function BindControls_facility(facility_names,facility_details,id) {
var timeout;
$('#facility_names'+id).typeahead({
items: "all",
// source: facility_names,
source : function (query, result) {
if (timeout) {
clearTimeout(timeout);
}
timeout = setTimeout(function() {
$.ajax({
url: master_url + "/facility_name_dropdown_list",
method: 'POST',
xhrFields: {
withCredentials: false
},
data: { input_query : query},
success: function (data) {
if(Object.keys(data.facility_name).length > 0){
// $("#facility_names"+id).popover('destroy');
result($.map(data.facility_name, function (item) {
return item;
}));
}
else{
$('#facility_names'+id).popover({container: '#botdiv'+id,placement: 'top'}).popover('show');
$('#facility_names'+id).attr('data-content','No result found for \"'+$("#facility_names"+id).val()+'\"').data('bs.popover').setContent();
setTimeout(function () {
$('#facility_names'+id).popover('destroy');
}, 2000);
}
}
});
}, 300);
},
hint: true,
highlight: true,
cache: true,
compression: true,
minLength: 3,
updater: function(item) {
var details = "";
$.ajax({
url: master_url + "/get_facility_name",
method: 'POST',
xhrFields: {
withCredentials: false
},
data: { facility_name : item},
success: function (data) {
console.log(data.status);
}
});
return item;
}
});
}
我试过显示这个" 没有找到结果"使用 bootstrap-popover 进行警告。我知道这不是一个好的尝试,但我只是分享了我的方法,如果我遇到同样的问题。