推特打字,寻血猎犬滤镜开始

Twitter typeahead, Bloodhound filter startswith

本文关键字:猎犬 滤镜 开始      更新时间:2023-09-26

我想用'startswith'过滤器过滤结果。现在,下面的代码会获取与结果中任何单独单词匹配的所有内容。因此,当用户键入"ex"时,"示例"和"一两个示例"都会被过滤掉。如何更改此行为,以便仅过滤掉"示例"?

var repos;
repos = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
    prefetch: {
        name: 'terms',
        url: 'search.php',
    }
});
repos.initialize();
$('input.typeahead').typeahead(null, {
    name: 'repos',
    source: repos.ttAdapter(),
    templates: {
        empty: '<div class="empty-message">No matches.</div>',
        suggestion: Handlebars.compile([
            '<div class="term-box" id="{{id}}">',
            '<p class="term">{{termname}}</p>',
            '</div>'
        ].join(''))
    }
});

只需像这样更改子字符串函数:

var substringMatcher = function (strs) {
                return function findMatches(q, cb) { // an array that will be populated with substring matches
                    var matches = [];
                    // regex used to determine if a string contains the substring `q`
                    //var substrRegex = new RegExp(q, 'i');
                    // we use starts with instead of substring
                    var substrRegex = new RegExp('^' + q, 'i');

                    // iterate through the pool of strings and for any string that
                    // contains the substring `q`, add it to the `matches` array
                    $.each(strs, function (i, str) {
                        if (substrRegex.test(str)) {
                            matches.push(str);
                        }
                    });
                    cb(matches);
                };
            };