0

私のusers_controllerにはこれらのメソッドがあります

  def follow_code
    @user = current_user
  end

  def followsubmit
    redirect_to root_path
  end

私のルートファイルには

  match "follow_code" => "users#follow_code", :as => "follow_code"
  match "follow_code" => 'users#followsubmit', :as => "follow_code", :via => 'post'

私の follow_code.html.erb ビューには

<%= form_tag(follow_code_path, :method => 'post') do %>
    <%= submit_tag("Submit") %>
<% end %>

しかし、何らかの理由でビューで送信をクリックすると、root_path にリダイレクトされず、代わりに follow_code ビューが再レンダリングされます。

私は何を間違っていますか?ありがとう。

4

1 に答える 1