在我的rails应用程序中,我实现了twitter的预先输入。在我的一个表单中,我想在选择或自动完成建议时,使用数据的id来填充hidden_field。但隐藏字段的值未被赋予id。
我的表单标记如下:
<%= form_tag students_path, :method => :get do %>
<div class="input-group">
<%= text_field_tag :search, nil, class: "load_students, form-control", placeholder: (params[:search] || t("search...")) %>
<%= hidden_field_tag :student_id, class: 'student_id' %>
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
<% end %>
#和我的js代码如下
#######There is more js code here
}).on('typeahead:selected typeahead:autocompleted',
function(data){
$('.student_id').val(data.id);
});
感谢。