“搜索”按钮在使用Tire的elasticsearch中不起作用

时间:2012-04-08 13:43:44

标签: haml

每当我尝试写一个单词来搜索它时,我什么都没有,好像Seach的按钮是乱码的。我已将我的博客索引编入索引。

this is for search
%h1 My Blog

= form_tag blog_posts_path, method: :get do 
  %p    
= text_field_tag :query, params[:query]
= submit_tag "Search", name: nil
- @blog_posts.each do |blog_post|
  %p
    %b= link_to blog_post.title, blog_post

  %p= blog_post.content

  %p{style: "float: right;"}
    = link_to "Delete", blog_post, method: :delete, confirm: "Are you sure you want to delete this post?"
    %hr{style: "clear: both;"}

%br

= link_to 'New Post', new_blog_post_path

和这个索引 marina @ ubuntu:〜/ project $ rake db:setup 为BlogPost生成的索引

1 个答案:

答案 0 :(得分:0)

尝试在text_field_tag下嵌套submit_tagform_tag,在您的代码中,这些是兄弟节点。

%p
  = form_tag blog_posts_path, method: :get do   
    = text_field_tag :query, params[:query]
    = submit_tag "Search", name: nil