jQuery自动完成组合框-如何从数据库加载数据?

时间:2018-09-06 11:44:09

标签: jquery jquery-ui

我想实现自动完成组合框。我已经引用了“ https://jqueryui.com/autocomplete/#combobox”,但对于在代码中将数组分配给源的位置感到困惑。

但是我已经实现了自动完成功能,这是我的代码。

var autocompleteList = [];
session.run('MATCH (n) RETURN n.nme').then(function (result) {
result.records.forEach(function(record){
autocompleteList.push(record._fields[0]);
});

jQuery代码

$( "#search" ).autocomplete({
  max:10,
  minLength:1,
  source: autocompleteList
});

});

能否请您给我一些想法,以使用此代码添加组合框逻辑。

0 个答案:

没有答案