我在typeahead v0.10.5中使用typeahead和search在我的rails 4应用程序中工作但是由于更新到v0.11.1它已经破坏了。我在这个网站上得到了各种答案的代码而没有真正理解发生了什么。我现在主要使用它,但是下拉列表中填充了我的模型中所有属性的文本,而不仅仅是我想要的名称。我想确保我正确地做事,并希望更好地了解正在发生的事情。
item.rb
def self.search(search)
if search
where(['lower(name) LIKE ?', "%#{search}%"])
else
Item.all
end
end
items_controller.rb
def index
@items= Item.search(params[:query])
end
def typeahead
render json: Item.where('name ilike ?', "%#{params[:query]}%")
end
_header.html.erb
<div role="search">
<%= form_tag items_path, class: 'navbar-form', method: :get do %>
<div class="form-group">
<%= text_field_tag :query, params[:query], id: 'typeahead', class: 'search-input form-control',
placeholder: 'Search items' %>
</div>
<span class="search-icon">
<%= button_tag "<i class='fa-navbar fa fa-search'></i>".html_safe, name: nil, class: 'search-button' %>
</span>
<% end %>
</div>
.
.
.
<script>
$(document).ready(function(){
var bloodhound = new Bloodhound({
datumTokenizer: function (d) {
return Bloodhound.tokenizers.whitespace(d.value);
},
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
remote: {url: '/typeahead/%QUERY',
wildcard: '%QUERY'}
});
bloodhound.initialize();
$('#typeahead').typeahead(null, {
name: 'name',
source: bloodhound.ttAdapter()
});
$('#typeahead').bind('typeahead:selected', function(event, datum, name) {
window.location.href = '/items/' + datum.id;
});
});
</script>
config/routes.rb
get 'typeahead/:query', to: 'items#typeahead'
我的数据来源于我的模型,基于用户输入。我的例子中有预取的地方吗?
在遥控器中,我将网址设置为'/typeahead/%QUERY'
。在其他示例中,我看到过类似'/typeahead?q=%QUERY'
的内容。有什么区别?
猎犬中的准备和通配符选项是什么?我已阅读api解释here,但仍然不理解。
答案 0 :(得分:0)
正确显示建议下拉列表的问题是因为我缺少displayKey: 'name'
作为预先输入选项。添加这个解决了我的问题。
$('#typeahead').typeahead(null, {
name: 'name',
displayKey: 'name',
source: bloodhound.ttAdapter()
});