0

我正在“城市”输入字段上调试 jQuery 自动完成实例(v1.1)。

keyup仅当字段值长度至少为 2 且值已更改时,才会在字段事件上设置自动完成数据绑定。

数据绑定、提示列表和自动完成工作正常。但有些不对劲。在日志中,我看到发布到服务器的城市输入值中多次缺少第三个字符,有时甚至是第四个字符。一些例子:

"trpani" instead of "trapani"
"fienze" instead of "firenze"
"scndicci" instead of "scandicci"
"brdisi" instead of "brindisi"
"paermo" instead of "palermo"
"caliari" instead of "cagliari"

我没有成功复制这个错误,但我相信这不是偶然的!错误发生在第三个字符。似乎在插入期间,Javascript 处理与键盘缓冲区发生冲突。

所以,我猜但我不确定,人们输入f i r e n z e,但最终r字符被遗漏,输入的最终值fienze是最终发布到服务器。

问题

怎么了?为什么我没有成功复制错误?怎么了?

这是用于设置自动完成的代码:

/*
 * here I store the previous value
 */
var storeCity;
$('#City').keydown(function(){
    var val = $(this).val();
    storeCity = (val.length >=2 ? val.substring(0,2):"");
});

/*
 * the autocomplete is set only if
 * - the City value has changed compared to the storeCity value
 * - the City value has lenght at least 2
 * - remark: using the keypress does not solve the issue
 */
$('#City').keyup(function(){
    var val = $(this).val();
    if(val.length>=2 && val.substring(0,2)!=storeCity){
        getLocations('#City');
    }
});

function getLocations(cityId){
    var hint = $(cityId).val().substring(0,2);

    $.ajax({
        type: "GET",
        url: "/include/getLocations.asp",
        data: ({location : hint}),
        async: false,
        error: function() {},
        success: function(dataget) {
            var result = dataget.split("\n");

            $(cityId).flushCache();
            $(cityId).autocomplete(result, {
                pleft: 100px,
                minChars: 2,
                matchContains: true,
                max: 3000,
                delay: 100,
                formatItem: function(row){...},
                formatMatch: function(row){ return row[0]; },
                formatResult: function(row){ return row[0]; }
            });

            $(cityId).result(function(event,data){...});
        }
    });
}
4

2 回答 2

0

看起来初始化的顺序应该颠倒。加载页面时,自动完成组件的初始化应该只发生一次。见附件示例:

  $( "#city" ).autocomplete({
        source: function( request, response ) {
           // Put your ajax request here
        }
  });
于 2012-11-19T21:18:15.650 回答
0

最终我用一些启发式方法解决了。我认为问题是由于事件冲突。所以我试图获得更好的表现。

  • 在 getLocation() 方法之外初始化自动完成一次
  • 将 $('#city') 对象存储在变量中
  • 将 $city.result 方法放在 getLocation() 方法之外

这是结果代码:

var $city = $('#City');
var storeCity;

$city.keypress(function(){
    var val = $(this).val();
    storeCity = (val.length >=2 ? val.substring(0,2):"");
});

/*
 * the autocomplete is set only if
 * - the City value has changed compared to the storeCity value
 * - the City value has lenght at least 2
 * - remark: using the keypress does not solve the issue
 */
$city.keyup(function(){
    var val = $(this).val();
    if(val.length>=2 && val.substring(0,2)!=storeCity){
        getLocations('#' + $city[0].id);
    }
});

$city.autocomplete({
    pleft: 100px,
    minChars: 2,
    matchContains: true,
    max: 3000,
    delay: 50
});

$city.result(function(event,data){...});

function getLocations(cityId){
    var hint = $(cityId).val().substring(0,2);

    $.ajax({
        type: "GET",
        url: "/include/getLocations.asp",
        data: ({location : hint}),
        async: false,
        error: function() {...},
        success: function(dataget) {
            var result = dataget.split("\n");

            $(cityId).flushCache();
            $(cityId).autocomplete(result, {
                formatItem: function(row){...},
                formatMatch: function(row){ return row[0]; },
                formatResult: function(row){ return row[0]; }
            });
        }
    });
}
于 2012-11-29T11:25:48.383 回答