我目前正在使用Bootstrap-typeahead插件,这样:
$('.patients_typeahead').typeahead({
name: 'patientshomepage',
source: function (query, process) {
$.ajax({
url: 'source.php',
type: 'POST',
query: 'query=' + query,
dataType: 'JSON',
async: true,
success: function (data) {
process(data);
}
})
}
});
我想升级到最新的typeahead,但我明白不再支持source: function()
了。如何转换我的代码以便我可以使用最新的twitter-typeahead?