Amadeus Airport使用jQuery自动完成

时间:2016-05-17 13:19:36

标签: jquery json autocomplete amadeus

问题:

尝试使用自动填充功能与Amadeus Airport Autocomplete配合使用,可在此处找到:

https://sandbox.amadeus.com/travel-innovation-sandbox/apis/get/airports/autocomplete

最小示例:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>jQuery UI Autocomplete</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <style>
    #city {
      width: 25em;
    }
  </style>
  <script>
    $(function() {
      function log(message) {
        $("<div>").text(message).prependTo("#log");
        $("#log").scrollTop(0);
      }
      $("#city").autocomplete({
        source: function(request, response) {
          $.ajax({
            url: "http://api.sandbox.amadeus.com/v1.2/airports/autocomplete",
            dataType: "json",
            data: {
              apikey: "SECRET",
              term: request.term
            },
            success: function(data) {
              response(data);
            }
          });
        },
        minLength: 3,
        select: function(event, ui) {
          log(ui.item ?
            "Selected: " + ui.item.label :
            "Nothing selected, input was " + this.value);
        },
        open: function() {
          $(this).removeClass("ui-corner-all").addClass("ui-corner-top");
        },
        close: function() {
          $(this).removeClass("ui-corner-top").addClass("ui-corner-all");
        }
      });
    });
  </script>
</head>

<body>
  <div class="ui-widget">
    <label for="city">Your city: </label>
    <input id="city">
  </div>
  <div class="ui-widget" style="margin-top:2em; font-family:Arial">
    Result:
    <div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
  </div>
</body>

</html>

期望的输出:

在您键入时获取列表中的机场列表。如果有人能够指出我错过了什么,那就太感激了。

1 个答案:

答案 0 :(得分:1)

原来答案很简单。 Safari 9.0似乎阻止了不安全的内容&#34;而我所要做的就是将http://更改为https://以使其正常工作。