twitter typeahead使用预取内容进行强制选择

时间:2013-07-26 18:23:42

标签: jquery bootstrap-typeahead typeahead typeahead.js

我目前正在使用我的网站as seen here的twitter typeahead插件。

列表打开,在选择时,隐藏的输入字段将使用选择ID进行更新。我需要typeahead强制选择,以便ID与用户输入的内容一起使用。如果值更改,则应删除id,直到进行有效选择。如果盒子没有选择就关闭了,那么它们都应该被清空。

到目前为止,我有:

$('.cp').typeahead({                              
  name: 'nom',                                                          
  prefetch: 'ajax_recherche_ville.php',                                         
  limit: 50                                                    
});

$('.cp').bind('typeahead:selected', function(obj, datum) {        
        $('input:hidden[name=ville_id]').val(datum.id); 
});

我找不到适用于此代码的强制选择示例 - 特别是因为我使用了预取方法。因此,我无法验证值是否在列表中,或者至少我不知道如何。如何让它按预期运行?

2 个答案:

答案 0 :(得分:1)

我不知道任何直接的解决方案,但我想我可以提供解决方法。

您可以清除change()事件的隐藏输入,稍后会在typeahead:selected事件中更新:

$('.cp').typeahead({                              
    name: 'nom',                                                          
    prefetch: 'ajax_recherche_ville.php',                                         
    limit: 50                                                    
}).change(function () {
     $('input[name=ville_id]').val(''); // don't use :hidden since it slow down performance and doesn't do anything special, I suppose the input with name ville_id is unique
}).bind('typeahead:selected', function(obj, datum) {        
     $('input[name=ville_id]').val(datum.id); 
});

这种方法的弱点是:

  • 如果用户输入了不触发自动完成功能的内容,则不会清除预先输入
  • 用户必须点击自动完成下拉列表(触发typeahead:selected)才能填充隐藏的输入

演示:http://jsfiddle.net/hieuh25/zz85q/

希望它有所帮助。

答案 1 :(得分:1)

我相信您的代码是正确的,可以添加一些增强功能,以确保修改和更正的文本仍然有效

$sourceSelect = @$el.find('[name="source_venue_name"]')
$sourceSelect.typeahead [
  {
    valueKey: 'name'
    remote:
      url: '/apis/venues?q=%QUERY'
    ]
  }
]

# hidden id
$sourceId = @$el.find('[name="source_venue_id"]')

$sourceSelect.on 'typeahead:selected', (e, item) =>
  # set hidden id on selection
  $sourceId.val item.id
  # remember selection
  $sourceSelect.attr 'data-name', item.name
  $sourceSelect.attr 'data-id', item.id

$sourceSelect.on 'change', () =>
  # if changed value is same as selected text
  if $sourceSelect.val() is $sourceSelect.attr 'data-name'
    $sourceId.val $sourceSelect.attr 'data-id'
  else # changed to be invalid
    $sourceId.val ''

PS:我相信Typeahead希望避免所有用例的特征蠕变 https://github.com/twitter/typeahead.js/issues/368