1

我正在尝试使用 Twitter Bootstrap 的 typeahead javascript 的更新程序选项来检索同一行的多个值,然后在输入框的同一选定行上显示一列,在另一列上显示另一列。不幸的是,我似乎无法找出下面的代码如何无法更新具有 id 的输入框ProductName

$('#ProductName').typeahead({
                source: function(query,process){
                    var query = {query:query};
                    return $.post('/products/ajax_search_product_by_name',query,function(data){
                        return process(data.options);
                    },"json");
                },
                minLength: 3,
                items: 50,
                updater: function(item){
                    lastIndex = item.lastIndexOf('-');
                    length = item.length;

                    var product_id;
                    var product_name;
                    product_id = item.substr(lastIndex + 1, length);
                    product_name = item.substr(0,lastIndex);
                    document.getElementById('ProductName').value = product_name;
                    console.log(product_name);
                }

我在文档中读到该项目具有预先输入实例的范围:

The method used to return selected item. Accepts a single argument, the item and has the scope of the typeahead instance.

所以我尝试this不使用 DOM 选择器,但它也不起作用。我也尝试了 jQuery 的方式,$('#ProductName').val(product_name)但没有运气。

我在这里错过了什么吗?

4

1 回答 1

6

你在这里遗漏了一些东西:) updater方法不应该将值设置到输入中,只是为了返回它。实际值设置是在调用updater方法后完成的。我相信,如果您以以下方式结束更新程序方法:

return product_name;

它应该可以正常工作。

于 2013-03-04T16:06:49.950 回答