如何通过url使用JSON自动完成和JSON

时间:2017-02-01 03:43:44

标签: javascript jquery json jquery-ui autocomplete

我想从网址显示自动填充功能。我的参考是http://jqueryui.com/autocomplete/

这是HTML

<div class="ui-widget">
  <label for="tags">Tags: </label>
  <input id="tags">
</div>

我想改变来源:

$( "#tags" ).autocomplete({
  source: availableTags
});

到我的网址,例如(https://myapi.com/api)。 API的内容是

{
  "city" : [
        {
           "city" : "Madrid",
           "id"   : "1"
        },
        { 
           "city" : "Moscow"
           "id:   : "2"
        },
        {
           "city" : "London"
           "id"   : "3"
        }
    ]
}

我期待,我可以使用:

source: https://myapi.com/api 

如何创建它? 谢谢。这对我很有帮助

0 个答案:

没有答案