ajax 仅 easyutocomplete returns 前 6 个值

ajax easyutocomplete only returns first 6 values

我正在尝试按照以下示例: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 个加载的字段。

API Return

Input hint

我是不是漏掉了什么?

Default value for parameter maxNumberOfElements is 6.

您可以通过将此添加到您的选项来增加它

 list: {
   maxNumberOfElements: 10,
     match: {
        enabled: true
    }
 }

Docs http://easyautocomplete.com/guide#sec-maxsize