我尝试按照此示例:http://easyautocomplete.com/example/ajax-get创建一个输入字段,该字段将自动完成API的提示。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Autocomplete - Remote datasource</title>
<head>
<!-- Easy Autocomplete -->
<link rel="stylesheet" href="/plugins/easy-autocomplete/dist/easy-autocomplete.min.css">
<link rel="stylesheet" href="/plugins/easy-autocomplete/dist/easy-autocomplete.themes.min.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<!-- Easy Autocomplete -->
<script src="/plugins/easy-autocomplete/dist/jquery.easy-autocomplete.min.js"></script>
<script>
var options = {
url: "http://localhost:8081/api/customers",
getValue: "name",
template: {
type: "description",
fields: {
description: "email"
}
}
};
$(document).ready(function () {
console.log("ready");
$("#example-ajax-post").easyAutocomplete(options);
});
</script>
</head>
<body>
<input id="example-ajax-post" />
</body>
</html>
在我的API响应中,我可以看到所有返回的值(总共26个),但是我的输入只显示前6个提示,即使我尝试输入我的响应中的一些数据我只能看到每次前6个加载字段。
我错过了什么吗?
答案 0 :(得分:0)
参数maxNumberOfElements的默认值为6。
您可以通过将此添加到您的选项
来增加此功能 list: {
maxNumberOfElements: 10,
match: {
enabled: true
}
}