写真のタイトルに対して検索をかけるようにしたいのですが
検索した時にveiwにて全てが反映されてしまいます。
データベースには写真のタイトルはtextカラムに保存するようにしています。
ファイル名<search.html.haml>
= text_field_tag :search, params[:keyword]
にparams[:keyword]追加して見ましたが検索結果は全て反映で効果ありませんでした。
tweet.rbのif文がうまく読めてないように思います。
原因教えてくださいよろしくお願いします。
ファイル名<tweets.controller.rb> def search @tweets = Tweet.search(params[:keyword]) end
ファイル名<tweet.rb> def self.search(search) if search Tweet.where('text LIKE(?)', "%#{search}%") else Tweet.all end end
ファイル名<search.html.haml> .top-page .menu = form_tag(tweets_searches_path,method: 'get') do = text_field_tag :search = submit_tag 'Search', name: nil - @tweets.each do |tweet| .main-photo{style: "background-image: url(#{tweet.image});"}
ファイル<routes.rb> Rails.application.routes.draw do devise_for :users root to: "tweets#index" namespace :tweets do resources :searches, only: :index end resources :tweets do resources :comments, only: [:create, :destroy] end resources :users, only: :show end
ファイル名<tweets.controller.rb> class TweetsController < ApplicationController before_action :set_tweet, only: [:edit, :show] before_action :move_to_index, except: [:index, :show] def index @tweets = Tweet.includes(:user).order("created_at DESC").page(params[:page]).per(6) @random = Tweet.order("RAND()").limit(1) end def new @tweet = Tweet.new end def create Tweet.create(tweet_params) end def destroy tweet = Tweet.find(params[:id]) tweet.destroy end def edit end def update tweet = Tweet.find(params[:id]) tweet.update(tweet_params) end def show @comment = Comment.new @comments = @tweet.comments.includes(:user) end def search @tweets = Tweet.search(params[:keyword]) end private def tweet_params params.require(:tweet).permit(:image, :text).merge(user_id: current_user.id) end def set_tweet @tweet = Tweet.find(params[:id]) end def move_to_index redirect_to action: :index unless user_signed_in? end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/26 08:58
2019/11/26 09:07
2019/11/26 09:23
2019/11/26 09:26
2019/11/26 09:34
2019/11/26 09:48 編集
2019/11/26 09:53
2019/11/26 10:01
2019/11/26 10:05
2019/11/26 10:09
2019/11/26 10:19
2019/11/26 10:26
2019/11/26 10:27
2019/11/26 10:34
2019/11/26 10:37
2019/11/26 10:51