从twitter typeahead获取所有显示的对象

时间:2014-10-01 05:25:19

标签: javascript twitter-bootstrap twitter twitter-typeahead

我正在使用twitter typeahead来显示建议,它运行正常。但是当用户继续输入时,我需要获得所有显示的建议(对象)。任何帮助表示赞赏。提前谢谢。

        var mCountry = new Bloodhound({
        datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name'),
        queryTokenizer: Bloodhound.tokenizers.whitespace,
        limit: 10,
        prefetch: {
            url: 'list.json',
            filter: function(list) {
                return $.map(list, function(country) {

                    return {
                        name: country.n,
                        id: country.i
                    };
                });
            }
        }
    });

    mCountry.initialize();

    $("#sugg_input").typeahead(null, {
        name: 'countries',
        displayKey: 'name',
        source: mCountry.ttAdapter()
    });

0 个答案:

没有答案