Typahead Bloodhound提示和自动完成不使用远程URL

时间:2017-09-27 06:33:34

标签: jquery json typeahead.js bootstrap-typeahead bloodhound

我不知道为什么它不使用远程网址。 当本地加载相同的结果/ json数组时,它工作正常。

我的代码

 var bh_engine = new Bloodhound({
                datumTokenizer: function(d) {


                    var my_string = d.company_name;
                    my_string = my_string.replace(/\s/g, "");
                    var string_length = my_string.length;

                    var my_matches = [];

                    for (var i = 0; i < string_length; i++) {
                        my_matches.push(my_string.substring(i, string_length));
                    }

                    return my_matches;
                },
                queryTokenizer: Bloodhound.tokenizers.whitespace,
                local: local_source,
                prefetch: prefetch_source,
                remote: remote_source
            });

         bh_engine.initialize();


            $(apply_on_element + ' .bootstrap-tags-input input#mytaginput').typeahead({
                hint: true,
                highlight: true,
                minLength: 1
            }, {
                async:true,
                displayKey: 'company_name',
                source: bh_engine.ttAdapter()


            });

Json数据

[{"company_name":"Google","code":1},{"company_name":"Facebook","code":2}]

在本地和远程使用相同的数据进行测试。 只有远程访问才能解决问题。

有什么想法吗?为什么呢?

你也可以在这里查看  JSfiddle

首先输入“string1”或“string2”等字符串......

然后使用远程数据输入“data30”等等.....

每次显示json对象的第一个元素

正如您可以看到粗体/突出显示功能正常工作,但提示不是

当我输入“data50”或至少在列表的第一位置时,我只想显示“data50”

1 个答案:

答案 0 :(得分:1)

您可以在远程对象上使用Bloodhound转换方法来模拟为本地数据实现的相同行为。

window.bh = bloodhoundSuggestions = new Bloodhound({
      datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
      queryTokenizer: Bloodhound.tokenizers.whitespace,
      sufficient: 3,
      local: suggestions,
      remote: {
          url: 'https://www.mockaroo.com/api/generate.json?key=9c13bbb0&schema=typeahead',
          transform: function(response) {

            // input selector
            var input = $("#tagsInput").val();
              return response.filter( function (item) {
                return input.toLowerCase() == item.value.toLowerCase().substr(0, input.length);
            });
         }
      },
  });

JsFiddle - 只需输入数据