form_withを使うとredirect_toが作動しない
カード登録をしている状態だとform_withに記述してあるurlに行ってボタンを押して購入する
= form_with url: pay_purchase_index_path, method: :post, local: true do |f| =f.submit "購入する",data: {"turbolinks" => false} ,class: "btn linkbtn"
カード登録しないで購入ボタンを押すとredirect_toで別のページに遷移するようにしている
def done @card = current_user.cards.first redirect_to controller: "card", action: "new" if @card.blank? end end
riderict_toで別画面に遷移したいのですができないです
ご教授お願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/08 06:31