Bloodhound - typeahead不显示以键入的搜索字符串开头的建议

时间:2015-04-30 00:26:06

标签: typeahead bloodhound

我一直在对此进行故障排除几个小时但无济于事。

基本上,在以下代码中,我从远程建议提供程序

中获得了正确的结果
            var descuentos = new Bloodhound({
            datumTokenizer: Bloodhound.tokenizers.nonword,
            queryTokenizer: Bloodhound.tokenizers.nonword,
            remote: {
                url: 'http://localhost:30045/Home/Suggest?q=%QUERY&type=name&fuzzy=false',
                wildcard: "%QUERY",
                filter: function (items) {
                    return $.map(items, function (item) {
                        return {
                            value: item.NombreComercio
                        };
                    });
                }
            }
        });

        $('#bloodhound .typeahead').typeahead({
            hint: true,
            highlight: true,
            minLength: 0
        },
        {
            name: 'descuentos',
            source: descuentos
        });

<body>
    <div id="bloodhound">
        <input class="typeahead" type="text" placeholder="Comercio Adherido...">
    </div>
</body>

但是,当建议使用搜索字符串STARTTS时,不会显示...想法?

谢谢!

1 个答案:

答案 0 :(得分:0)

displayKey添加到预先输入数据集参数。

$('#bloodhound .typeahead').typeahead({
  hint: true,
  highlight: true,
  minLength: 0
},{
  name: 'descuentos',
  displayKey: 'value',
  source: descuentos
});

希望这有帮助。