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 4 上遇到了设计错误。我希望/users/sign_up路线匹配到/login. 该match :to方法没有产生任何结果。先感谢您
/users/sign_up
/login
match :to
将以下内容添加到您的config/routes.rb:
config/routes.rb
devise_scope :user do get '/login', to: 'devise/sessions#new' end