我的应用程序中用户的 URL 如下:
localhost:3000/users/1/dashboard
当有人手动user ID
将 URL 中的 更改为没有分配用户的数字时,它给了我错误:
Couldn't find User with id=X.
有没有办法将用户返回到其他地方?
我在 user_controller.rb 中尝试过这样的事情:
@user = User.find(params[:id])
unless @user
redirect_to root_path
end