我正在尝试使用searchkick在我的数据库中查找某个人。当用户从下拉列表中选择人员时,它会将人员的ID放在隐藏字段中,这是提交的值。
那部分工作正常(大部分)。
我遇到的问题是typeahead只显示下拉列表中的一个值(searchkick返回的第一个值),如果结果少于五个。如果有超过五个结果,则下拉列表不会显示。
这是我的人物模型:
searchkick text_start: [:first_name, :middle_name, :last_name]
def search_data
as_json only: [:first_name, :last_name, :middle_name, :active]
end
def full_name
"#{first_name} #{middle_name} #{last_name}"
end
我的人员控制器:
def person_search
render json: Person.search(params[:query],
fields: [{first_name: :text_start}, {last_name: :text_start}, {middle_name: :text_start}],
where:{active:true},
limit: 5).map {|person| {name: person.full_name, value: person.id}}
end
我的表单视图:
<%= simple_form_for(@person) do |f| %>
<% if @person %>
<%= f.input :person_search, as: :fake, label: 'Person', input_html: {class: 'form-control person-typeahead', value: @person.full_name} %>
<% else %>
<%= f.input :person_search, as: :fake, label: 'Person', input_html: {class: 'form-control person-typeahead', placeholder: "No Person Selected"} %>
<% end %>
<%= f.input :person_id, as: :hidden%>
<% end %>
我的搜索js:
var ready;
ready = function() {
var people = new Bloodhound({
identify: function(obj) { return obj.value;},
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name', 'value'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
url: '/people/person_search?query=%QUERY',
wildcard: '%QUERY'
}
});
$('.person-typeahead').typeahead(null, {
display: 'name',
source: people
}).on('typeahead:selected', onPersonSelected);
// show name and submit id
function onPersonSelected($e, datum) {
$('#person_id').val(datum.value);
}
};
$(document).ready(ready);
$(document).on('page:load', ready);
如果有人能够更好地向我解释猎犬(标记符和识别函数的作用),这也会有所帮助。
我一直在查看文档几个小时,而不是点击。
奖金问题: 假设我在数据库中有多个Johns。
当我搜索John(这是在0.10)时,下拉列表显示所有三个,但是当我按下空格并开始输入姓氏时,searchkick不返回任何内容,所有结果都消失了。 有没有办法用Searchkick做到这一点?
答案 0 :(得分:0)
看起来这是typeahead的一个问题。我在这里找到了解决方案:
https://github.com/twitter/typeahead.js/issues/1218
我做了这件事并为我修好了:
https://github.com/per-nilsson/typeahead.js/commit/387290b1e70be0052c6dd9be84069f55d54a7ce7