我已经为 Bootstrap的Typeahead 中的建议定义了一个自定义模板,如下所述。但是,当我选择任何建议时,输入中只会得到国家名称。由于我已经在 displayKey 参数中传递了国家。无论如何,我可以在输入中选择国家城市名称(与模板相同)吗?

这是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: function(item){ return item.country+'–'+item.city}

还更新了小提琴上的代码:
http://jsfiddle.net/geekowls/agrg3xhj/1/

干杯!

09-18 12:45