userのshowページに配置したボタンを押して、指定した値を別のuserに送りたいのですが
下記のようにshowアクションをeditの変わりとして使用し、updateはできますか?
rb
1def show 2end 3 4 def update 5 if @user.update_attributes(month_params) 6 flash[:success] = "ユーザー情報を更新しました。" 7 redirect_to @user 8 else 9 render :show 10 end 11 end
初歩的な質問ですが、宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー