4

我正在使用 Bootstrap Typeahead 来建议 som 搜索结果。结果是从 ajax 资源返回的,并且由于该资源会产生延迟,因此我遇到了不幸的影响。

示例:如果输入一个 4 个字母的单词,建议将出现在 2 个字母之后,然后我可以使用向上/向下键查看结果,但由于最后一个请求已完成,建议会突然重新加载。

如果用户当前正在使用向上/向下键来查看建议,是否有任何方法可以“取消”任何剩余?

('#query').typeahead({
        items: 4,
        source: function (query,process) {

            map = {};
            $.getJSON('/app_dev.php/ajax/autosuggest/'+query, function (data) {
                vehicles = [];
                $.each(data, function(i,vehicle){
                    map[vehicle.full] = vehicle;
                    vehicles.push(vehicle.full);
                });
                process(vehicles);
            });
        },
        updater: function (item) {
            // do something here when item is selected
        },
        highlighter: function (item) {
            return item;
        },
        matcher: function (item) {
            return true;
        }
    });
4

1 回答 1

2

认为以下内容将满足您的需求(很难准确复制):

没有简单的方法来中止延迟的响应,但是您可以按照我在这里的想法扩展 typeahead (无需修改 bootstrap.js)

这个概念是捕捉keydown,检测事件是否为KEY_UPor KEY_DOWN,设置一个标志is_browsing,然后process如果is_browsing为真则中止(即,如果用户点击了KEY_UPorKEY_DOWN之后没有其他键)。

扩展预输入

// save the original function object
var _superTypeahead = $.fn.typeahead;

// add is_browsing as a new flag
$.extend( _superTypeahead.defaults, {
    is_browsing: false
});

// create a new constructor
var Typeahead = function(element, options) {
    _superTypeahead.Constructor.apply( this, arguments )
}

// extend prototype and add a _super function
Typeahead.prototype = $.extend({}, _superTypeahead.Constructor.prototype, {
    constructor: Typeahead

    , _super: function() {
        var args = $.makeArray(arguments)
        // call bootstrap core
        _superTypeahead.Constructor.prototype[args.shift()].apply(this, args)
    }

    //override typeahead original keydown
  , keydown: function (e) {
      this._super('keydown', e)
      this.options.is_browsing = ($.inArray(e.keyCode, [40,38])>-1)
    }

    //override process, abort if user is browsing
  , process: function (items) {
      if (this.options.is_browsing) return
      this._super('process', items)
    }

});

// override the old initialization with the new constructor
$.fn.typeahead = $.extend(function(option) {
    var args = $.makeArray(arguments),
    option = args.shift()

    // this is executed everytime element.modal() is called
    return this.each(function() {
        var $this = $(this)
        var data = $this.data('typeahead'),
            options = $.extend({}, _superTypeahead.defaults, $this.data(), typeof option == 'object' && option)

        if (!data) {
            $this.data('typeahead', (data = new Typeahead(this, options)))
        }
        if (typeof option == 'string') {
            data[option].apply( data, args )
        }
    });
}, $.fn.typeahead);

这个 typeahead-extension 可以放在任何地方,例如在<script type="text/javascript">-section

测试扩展

<input type="text" id="test" name="test" placeholder="type some text" data-provide="typeahead">
<script type="text/javascript">
$(document).ready(function() {
    var url='typeahead.php';
    $("#test").typeahead({
        items : 10,
        source: function (query, process) {
            return $.get(url, {  query: query }, function (data) {
                return process(data.options);
            });
        }
    });
});
</script>

一个“服务器端”PHP 脚本,它返回许多带有强制延迟的随机选项,typeahead.php:

<?
header('Content-type: application/json');
$JSON='';
sleep(3); //delay execution in 3 secs
for ($count=0;$count<30000;$count++) {
    if ($JSON!='') $JSON.=',';
    //create random strings
    $s=str_shuffle("abcdefghijklmnopq");
    $JSON.='"'.$s.'"';
}
$JSON='{ "options": ['.$JSON.'] }';
echo $JSON;
?>

它似乎真的对我有用。但我不能确定它是否适用于你的情况。现在让我看看你成功与否。

于 2013-03-25T13:43:15.063 回答