Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Rails 控制器中,在一种方法中,我redirect_to对另一条路径(即另一种方法)进行了操作。我还想从第一种方法传递参数,以便第二种方法可以使用它们。那可能吗?
redirect_to
你可以这样做
例如:
redirect_to new_user_url(@user)
您可以在新用户页面中接收@user。
或者
redirect_to action_name_resource_path(resource_object, {:param_1 => 'value_1', :param_2 => 'value_2'})
redirect_to new_users_path(request.parameters)