Guest User

Untitled

a guest
Jun 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #some_object_controller.rb
  2. class SomeObjectController < ApplicationController
  3. def search
  4. @search_results = SomeClass.find(params[:search_term])
  5. end
  6. end
  7.  
  8. # search.html.haml
  9. - if @search_results.count > 0
  10. - @search_results.each do |result|
  11. #...
  12. - else
  13. %p Sorry, you have no results!
Add Comment
Please, Sign In to add comment