我想使用对象参数redirect_to。我尝试过不同的方式,但都没有。
redirect_to user_path(params[:current_user.id])
redirect_to user_path(params[:current_user(params[:id])])
我该怎么做?
答案 0 :(得分:2)
redirect_to user_path(current_user)
#=> redirects to users/:id where :id is current_user.id
答案 1 :(得分:1)
如何:
redirect_to user_path(current_user.id)