Ver Mensaje Individual
  #6 (permalink)  
Antiguo 04/06/2015, 16:57
Avatar de agusax
agusax
 
Fecha de Ingreso: junio-2011
Ubicación: Puerto Real (Cádiz)
Mensajes: 74
Antigüedad: 12 años, 10 meses
Puntos: 3
Respuesta: Problema con search

Cierro esto, lo he solucionado introduciendo el siguiente código:

Cita:
def search
@page_title = "Buscar"
if params[:commit] == "Buscar" || params[:q]
@games = Game.where 'title LIKE ?', "%#{params[:q]}%"
unless @games.size > 0
flash.now[:notice] = "No se ha encontrado el juego."
end
end
end
Muchas gracias por la ayuda abimex ^^