10

我正在尝试使用输入值的最后一部分来调用我的远程 url。我想做这样的事情:

    $('#typeahead').typeahead({
    remote: {
        url: '/ajax/tags/get/?name=%QUERY',
        replace: function (url, query) {
            var last = query.split(',');
            last = $.trim(last[last.length-1]);
            return url.replace('%QUERY', last);
        }
    },
    limit : 10
});

and when dropdown item selected,

在此处输入图像描述

将新值添加到行尾

在此处输入图像描述

知道如何使它工作吗?

4

2 回答 2

1

对于 Bootstrap 3,您可以使用Bootstrap-3-Typeahead

您将不得不覆盖updaterandmatcher函数。对于该matcher函数,您可以使用替换函数中的代码,如下所示:

matcher: function (item) {
        var last = this.query.split(',');
        this.query = $.trim(last[last.length-1]);

        if(this.query.length) return ~item.toLowerCase().indexOf(this.query.toLowerCase());
}

为您使用以下代码update

updater: function (item) {
      return this.$element.val().replace(new RegExp(this.query + '$'),'') + item + ',';
    }

(匹配最后一次出现:JavaScript:替换字符串中最后一次出现的文本

完整示例:

$('.typeahead').typeahead (
{
items: 4,
source: function (query, process) {
    states = [];
    map = {};


    var data = [
        {"stateCode": "CA", "stateName": "California"},
        {"stateCode": "AZ", "stateName": "Arizona"},
        {"stateCode": "NY", "stateName": "New York"},
        {"stateCode": "NV", "stateName": "Nevada"},
        {"stateCode": "OH", "stateName": "Ohio"}
    ];

    $.each(data, function (i, state) {
        map[state.stateName] = state;
        states.push(state.stateName);
    });

    process(states);

}

  , updater: function (item) {
      return this.$element.val().replace(new RegExp(this.query + '$'),'') + item + ',';
    }
    , matcher: function (item) {
        var last = this.query.split(',');
        this.query = $.trim(last[last.length-1]);

        if(this.query.length) return ~item.toLowerCase().indexOf(this.query.toLowerCase());
    }
    }

);
于 2014-04-20T09:54:21.650 回答
0

假设“最后一部分的查询”对您有用,您可以使用它filter: function(response) {...}来填充并返回一个具有适当的数据数组valuetitle执行您想要的操作。

于 2013-08-29T06:35:04.963 回答