Return 值与 Bootstrap 的 Typeahead displayKey 函数

Return values with Bootstrap's Typeahead displayKey Function

我在 Bootstrap 的 Typeahead 中为建议定义了一个自定义模板,如下所述。但是当我 select 任何建议时,我在输入中只得到 country 名称。因为我在 displayKey 参数中传递了 country 。无论如何我可以 select 输入 countrycity 名称(与模板相同)?

这是 JsFiddle:http://jsfiddle.net/geekowls/agrg3xhj/

我还阅读了 Typeahead 网站上的示例。但是没有找到任何相关的东西。我只知道displayKey参数可以带函数。

$(document).ready(function () {

                        var dataSource = new Bloodhound({
                            datumTokenizer: Bloodhound.tokenizers.obj.whitespace('country', 'city'),
                            queryTokenizer: Bloodhound.tokenizers.whitespace,
                            identify: function (obj) { return obj.country; },
                            prefetch: "../Data/1.json"

                        });

                        function dataSourceS(q, sync) {
                                dataSource.search(q, sync);          
                        }

                        $('.typeahead').typeahead( {
                            minLength: 0,
                            highlight: true
                        }, {
                            name: 'countries',
                            displayKey: 'country',
                            source: dataSourceS,
                            templates: {
                                empty: [
                                    '<div class="empty">No Matches Found</div>'
                                ].join('\n'),
                                suggestion: function (data){
                                    return '<div>' + data.country + ' – ' + data.city + '</div>'
                                }
                            }
                        }
                        );
});

这是 Json 文件。

[
    {
    "country": "Holland",
    "city": "Amsterdam"
    },
    {
    "country": "Belgium",
    "city": "Brussel"
    },
    {
    "country": "Germany",
    "city": "Berlin"
    },
    {
    "country": "France",
    "city": "Paris"
    }
]

功能很简单。只需将 display 参数更新为:

display: function(item){ return item.country+'–'+item.city}

还在此处更新了 fiddle 上的代码: http://jsfiddle.net/geekowls/agrg3xhj/1/

干杯!