是否可以使用自定义分隔符向Bootstrap Typeahead添加两个源?
目前我有
source: function (query, process) {
...
process(data.names.merge(data.areas));
...
}
但是我非常希望在两者的结果之间添加自定义HTML。现在它们在显示时也混合在一起,我希望它们在两个单独的列表中,自定义HTML是分隔符。
有可能吗?
答案 0 :(得分:1)
答案是肯定的。您需要知道组合列表中出现分隔符的位置,这将在用户输入的“查询”(this.query
)中找到匹配的内容。
您可以通过覆盖render
方法来更改生成的HTML,您需要直接访问typeahead
对象才能执行此操作:
var typeahead = $("#myTypeahead").typeahead(/* ... */).data('typeahead');
typeahead.render = function(items) {
var that = this
// this "map"s the items, which iterates over them and generates a new
// li for each item _by default_; I have modified it
items = $(items).map(function (i, item) {
// return an array containing raw HTML Elements
var elements = []
// determine if separator is necessary, but make sure that it
// is not the first li (which this would be if it matched the
// i === 0 item!)
if (item === "worthSeparating") {
// put whatever you want as the separator in the elements array,
// which will appear in the position that you return it
// you probably don't want text, rather you want some CSS class
elements.push($("<li/>").addClass("menu-separator")[0])
}
// ordinary li that is displayed:
i = $(that.options.item).attr('data-value', item)
i.find('a').html(that.highlighter(item))
elements.push(i[0])
return elements
});
items.first().addClass('active')
this.$menu.html(items)
return this
};
上面的render
方法是从默认方法修改的。您可以完全控制发生的事情。实际上,如果你不喜欢默认菜单,那么你可以通过传递默认提供的不同选项来转换菜单:
{
menu: '<ul class="typeahead dropdown-menu"></ul>',
item: '<li><a href="#"></a></li>'
}
更改这些内容需要对render
方法进行不同的更改。