rails初学者です。現在英単語テストアプリを作っています。
下記のコントローラの処理はそれぞれ覚えていない単語と覚えた単語のテストの処理なのですが、どちらの処理も下の四行のコードがかぶっています。このようにメソッドの中である一部だけ同じコードがある場合、何かほかのファイルにまとめて書いておいて呼び出すということはできないのでしょうか?
def test #ログインユーザーのidのデータをとってきて、ランダムなデータを取得する Partofspeech.create(user_id: @current_user.id, name: params[:name]) if List.where(user_id: @current_user.id).count == 0 name = Partofspeech.find_by(user_id: @current_user.id).name listword = List.where(user_id: @current_user.id).pluck(:word) @random = Word.search(@current_user.id,name).where.not(word: listword).order(Arel.sql("RANDOM()")).first #Wordテーブルからログインユーザーのidのデータを取ってきて、ランダムなデータを4つ取得する。そして取得したデータを単語の意味の配列にする @words_meaning = Word.with_deleted.where(user_id: @current_user.id, part_of_speech: name).order(Arel.sql("RANDOM()")).limit(4).map{|word| word.meaning} #@words_meaningリストに@random.meaningのデータが含まれていなかったら配列のランダムな位置の要素@random.meaningと入れ替える @words_meaning[rand(4)] = @random.meaning if @words_meaning.exclude?(@random.meaning) #上記のコードで取得したデータを元にListモデルのインスタンスを作る List.create(word: @random.word, meaning: @words_meaning, user_id: @current_user.id) gon.number = @number = List.where(user_id: @current_user.id).count end
def learned_test #ログインユーザーのidのデータをとってきて、ランダムなデータを取得する Partofspeech.create(user_id: @current_user.id, name: params[:name]) if List.where(user_id: @current_user.id).count == 0 name = Partofspeech.find_by(user_id: @current_user.id).name listword = List.where(user_id: @current_user.id).pluck(:word) @random = Word.only_deleted.where(user_id: @current_user.id, part_of_speech: name).where.not(word: listword).order(Arel.sql("RANDOM()")).first #Wordテーブルからログインユーザーのidのデータを取ってきて、ランダムなデータを4つ取得する。そして取得したデータを単語の意味の配列にする @words_meaning = Word.with_deleted.where(user_id: @current_user.id, part_of_speech: name).order(Arel.sql("RANDOM()")).limit(4).map{|word| word.meaning} #@words_meaningリストに@random.meaningのデータが含まれていなかったら配列のランダムな位置の要素@random.meaningと入れ替える @words_meaning[rand(4)] = @random.meaning if @words_meaning.exclude?(@random.meaning) #上記のコードで取得したデータを元にListモデルのインスタンスを作る List.create(word: @random.word, meaning: @words_meaning, user_id: @current_user.id) gon.number = @number = List.where(user_id: @current_user.id).count render 'test' end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。