Guest User

Untitled

a guest
May 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. --controller--
  2. class SearchController < ApplicationController
  3. def query
  4. @query = params[:query]
  5. @posts = Post.search(@query)
  6. format.html { redirect_to(posts_url) }
  7. format.xml { head :ok }
  8. end
  9. end
  10.  
  11. --view--
  12. <% form_tag :controller => "search", :action => "query" do %>
  13. <p>
  14. <%= text_field_tag "query", "", "size" => 30 %>
  15. </p>
  16. <p>
  17. <%= submit_tag "Search" %>
  18. </p>
  19. <% end %>
Add Comment
Please, Sign In to add comment