自分の今のコード
class TimelistsController < ApplicationController before_action :require_user_logged_in def index @timelists = Timelist.all end def create @timelist = Timelist.new(timelist_params) if params[:commit] == "達成スタート" || "達成ストップ" @todo = if @timelist.save flash.now[:success] = "投稿しました。" render "toppages/index" else flash.now[:danger] = "投稿できませんでした。" render "toppages/index" end end def destroy @timelist = Timelist.find(params[:id]) @timelist.destroy flash.now[:success] = "行動を記録しました。" render "timelists.index" end def timelist_params params.require(:timelist).permit(:content) end end
今は@todoのところです。達成スタート達成ストップを入力欄に入れてから押すと@todo
に代入されるようにされたいんですが、どのように記述すれば良いでしょうか?
回答待ってます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。