在Rails的routes.rb中,get "user/new"
与get "user#new"
答案 0 :(得分:1)
据我所知:
get "user/new"
表示当您输入网址时:localhost/user/new
它将由users controller
操作new
处理
"user#new"
如果您希望某个特定网址由特定controller
和action
处理,则会使用,例如,当您打开localhost/profiles
希望由{{1}处理某个网址时{1}}行动users_controller
。
show
或,get "profile", to: "users#show"
:
localhost/edit_profile